Sha256: d2620d43a61dca69189b15df7e67cf8240b59afe72b1f74b23b7452a91a1fe0a

Contents?: true

Size: 842 Bytes

Versions: 6

Compression:

Stored size: 842 Bytes

Contents

%table.records
  %thead
    %tr
      %th= orderable_column_link(:created_at)
      %th= orderable_column_link('campaign.name', :campaign)
      %th= orderable_column_link(:request_path)
      %th= orderable_column_link(:referer)
      %th= orderable_column_link(:remote_ip)
  %tbody
    - if collection.empty?
      %tr
        %td{:colspan => 5}= e9_t(:no_records_text)
    - else
      - collection.each do |record|
        %tr{:id => "ids_#{record.id}", :class => cycle('odd', 'even')}
          %td.record-created-at
            = I18n.l(record.created_at)
          %td.record-campaign-name
            = record.campaign_name || e9_t(:no_campaign)
          %td.record-request-path
            = record.request_path
          %td.record-referer
            = record.referer
          %td.record-remote-ip
            = record.remote_ip

Version data entries

6 entries across 6 versions & 1 rubygems

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