module CmAdmin::ViewHelpers::PageInfoHelper

def nested_section_title(record, nested_form_field)

def nested_section_title(record, nested_form_field)
  if nested_form_field.header.present?
    record.send(nested_form_field.header)
  else
    nested_form_field.field_name.to_s.titleize
  end
end