module CmAdmin::ViewHelpers

def create_checkbox(column)

def create_checkbox(column)
  tag.div class: 'col-md-4' do
    concat check_box_tag('columns[]', column.field_name, false, id: column.field_name.to_s.gsub('/', '-'), data: { behaviour: 'export-checkbox' })
    concat " #{column.header.to_s.gsub('/', '_').humanize}"
  end
end