Sha256: 836ec374379f76e74f60a7a84df1c820f9bd7c8c8a708b5c783e118f15d59f0f

Contents?: true

Size: 812 Bytes

Versions: 5

Compression:

Stored size: 812 Bytes

Contents

- field_map = local_assigns[:field_map] || records_table_field_map

%table.records{:class => sortable_controller? ? 'sortable' : nil }
  %thead
    %tr
      - field_map[:fields].keys.each do |field|
        %th= resource_class.human_attribute_name(field)
      %th= e9_t(:actions)
  %tbody
    - if collection.empty?
      %tr
        %td{:colspan => field_map[:fields].length + 1}= e9_t(:no_records_text)
    - else
      - collection.each do |record|
        %tr{:id => "ids_#{record.id}", :class => cycle('odd', 'even')}
          - field_map[:fields].each do |key, value|
            %td{:class => "record-#{key.to_s.dasherize}"}
              = value.respond_to?(:call) ? value.call(record) : record.send(key)
          %td.links
            - field_map[:links][record].each do |link|
              = link

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
e9_crm-0.1.8 app/views/e9_crm/resources/_table.html.haml
e9_crm-0.1.7 app/views/e9_crm/resources/_table.html.haml
e9_crm-0.1.6 app/views/e9_crm/resources/_table.html.haml
e9_crm-0.1.5 app/views/e9_crm/resources/_table.html.haml
e9_crm-0.1.4 app/views/e9_crm/resources/_table.html.haml