Sha256: 9a2c082cfe88411f1588d58f57584a1f060b68ac0f0c38a84f8b5434dac339ed

Contents?: true

Size: 951 Bytes

Versions: 3

Compression:

Stored size: 951 Bytes

Contents

<div class="card <%= @color_scheme %>">
    <div class="card-header">
      <h5>Visits By Day of Week since <%= time_ago_in_words(@time_window.ago).titleize %> Ago (<%= @time_window.ago.strftime("%m/%d/%Y") %>) </h5>
      <% if @exclude_days.any? %>
        <p>Excluding <%= @exclude_days.join(', ') %></p>
      <% end %>
    </div>
    <div class="card-body">
      <table class="table table-hover table-borderless table-sm">
        <thead class="table-dark">
          <tr>
            <th class="text-start">DayOfWeek</th>
            <th class="text-end">Count</th>
          </tr>
        </thead>
        <tbody class="text-dark border-dark">
          <% visits_by_day_of_week.each do |day_of_week, count| %>
            <tr>
              <td><%= day_of_week %></td>
              <td class="text-end"><%= count %></td>
            </tr>
          <% end %>
        </tbody>
      </table>
    </div><!-- .card-body -->
</div><!-- .card -->

Version data entries

3 entries across 3 versions & 1 rubygems

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