Sha256: 4045d4b2ac698ca99e92ad479b67692497ce59de98a44d9d6dd2913ee5b43152

Contents?: true

Size: 1023 Bytes

Versions: 4

Compression:

Stored size: 1023 Bytes

Contents

<div class="card <%= @color_scheme %>">
  <div class="card-body">
    <h5>Top Landing Page Visits Since <%= time_ago_in_words(@time_window.ago).titleize %> Ago (<%= @time_window.ago.strftime("%m/%d/%Y") %>)</h5>
    <div>
      <table class="table table-hover table-borderless table-sm">
        <thead class="table-dark">
          <tr>
            <th>Path/Page</th>
            <th>Count</th>
          </tr>
        </thead>
        <tbody class="text-dark border-dark">
          <% @user_count_by_event.each do |controller_name_and_action, count| %>
            <tr>
              <td><%= controller_name_and_action %></td>
              <td class="text-end"><%= count %></td>
            </tr>
          <% end %>
          <tr class="table-dark">
            <td><strong>Total:</strong></td>
            <td class="text-end"><%=  @user_count_by_event.sum {|controller_name_and_action, count| count} %></td>
          </tr>
        </tbody>
      </table>
    </div>
  </div><!-- .card-body -->
</div><!-- .card -->

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
matey-0.2.0 app/components/matey/top_visited_pages_table_component.html.erb
matey-0.1.6 app/components/matey/top_visited_pages_table_component.html.erb
matey-0.1.5 app/components/matey/top_visited_pages_table_component.html.erb
matey-0.1.4 app/components/matey/top_visited_pages_table_component.html.erb