Files
fizzy/app/views/events/_empty_days.html.erb
T
Jason Zimdars 28a569c49b Tickets
2025-03-17 21:24:08 -05:00

18 lines
689 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<% if earliest.present? %>
<% if earliest == latest %>
<div class="events--none txt-align-center">
<h2 class="txt-medium margin-none"><%= event_day_title(earliest) %></h2>
<p class="margin-none">No activity</p>
</div>
<% elsif earliest < latest %>
<div class="events--none txt-align-center">
<h2 class="txt-medium margin-none"><%= event_day_title(earliest) %> <%= event_day_title(latest) %></h2>
<p class="margin-none">No activity for <%= (latest - earliest).seconds.in_days.round + 1 %> days</p>
</div>
<% end %>
<% else %>
<div class="events--none txt-align-center">
<p class="margin-none">No more activity.</p>
</div>
<% end %>