Files
fizzy/app/views/events/_empty_days.html.erb
T

16 lines
686 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 translucent">
<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 translucent">
<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 %>
<p class="events--none txt-align-center translucent">No more activity.</p>
<% end %>