Sha256: 0d6ca58369d85e22b81cc55d2d1537a6329b69ef42ad67e2b8df74523ae24a2d

Contents?: true

Size: 942 Bytes

Versions: 4

Compression:

Stored size: 942 Bytes

Contents


<div class="card <%= @color_scheme %>">
  <div class="card-body">
    <h5>Top Events 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>Event</th>
            <th>Count</th>
          </tr>
        </thead>
        <tbody class="text-dark border-dark">
          <% @events.each do |action, count| %>
            <tr>
              <td><%= action %></td>
              <td class="text-end"><%= count %></td>
            </tr>
          <% end %>
          <tr class="table-dark">
            <td><strong>Total:</strong></td>
            <td class="text-end"><%=  @events.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_events_component.html.erb
matey-0.1.6 app/components/matey/top_events_component.html.erb
matey-0.1.5 app/components/matey/top_events_component.html.erb
matey-0.1.4 app/components/matey/top_events_component.html.erb