Sha256: 10a0b21b4e9c84728936544512088c6ccbaf2d958208f75645f2baf32cf47429

Contents?: true

Size: 814 Bytes

Versions: 1

Compression:

Stored size: 814 Bytes

Contents

<%- if @sessions.blank? -%>
  <p>No visits matched your criteria.</p>
<%- else -%>
  <table class="standard">
    <tr>
      <th>Date</th>
      <%- if @sites.size > 2 -%><th>Site</th><%- end -%>
      <th>Referral Type</th>
      <th>Visit Type</th>
      <th>Visit Length</th>
      <th>Pageviews</th>
      <th></th>
    </tr>
  <%- @sessions.each do |session| -%>
    <tr class="<%= cycle('odd', 'even') -%>">
      <td><%= session.created_at.to_s(:short_date_time) %></td>
      <%- if @sites.size > 2 -%><td><%= session.site %></td><%- end -%>
      <td><%= session.kind.titleize %></td>
      <td><%= session.visit_type %></td>
      <td><%= session.hr_duration %></td>
      <td><%= session.views_count %></td>
      <td><%= link_to 'Details', session %></td>
    </tr>
  <%- end -%>
  </table>
<%- end -%>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mitamirri-0.13.8 app/views/trackable_sessions/_sessions.html.erb