module CmAdmin::ViewHelpers::FormHelper

def set_nested_form_fields(form_obj, section)

def set_nested_form_fields(form_obj, section)
  content_tag(:div) do
    section.nested_table_fields.each do |nested_table_field|
      concat(render(partial: '/cm_admin/main/nested_table_form', locals: { f: form_obj, nested_table_field: nested_table_field }))
    end
  end
end