Sha256: bab136e11b24b25b6854ccb8d27da8baec78f8ddf668c32641daa2d3733b9aee

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

%table.records
  %thead
    %tr
      %th= orderable_column_link(:name)
      %th= orderable_column_link(:status)
      %th= orderable_column_link(:category)
      %th= orderable_column_link('owner_name', :owner)
      %th= orderable_column_link(:value)
      %th= t(:actions)
  %tbody
    -# prepare a hash to store the accumulated row data for calculations
    - dat = Hash.new {|k,v| k[v] = [] }

    - if collection.empty?
      %tr
        %td{:colspan => 6}= e9_t(:no_records_text, :scope => 'e9_crm.deals')
    - else
      - collection.each do |record|
        %tr{:id => "ids_#{record.id}", :class => cycle('odd', 'even')}
          %td.record-name
            = record.name
          %td.record-status
            = record.status
          %td.record-category
            = record.category
          %td.record-owner
            = record.owner_name
          %td.record-value
            - dat[:value] << record.value
            = record.value
          %td.actions
            = link_to_edit_resource(record)
            = link_to_destroy_resource(record)

    %tfooter
      %tr{:class => 'record-totals'}
        %td.record-totals-label{:colspan => 4}
          #{t(:total)}:
        %td.record-totals
          = dat[:value].sum
        %td

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
e9_crm-0.1.10 app/views/e9_crm/deals/_table.html.haml
e9_crm-0.1.8 app/views/e9_crm/deals/_table.html.haml
e9_crm-0.1.7 app/views/e9_crm/deals/_table.html.haml