Files
archived-hc-harbor/app/views/static_pages/_active_users_graph.html.erb
2025-06-27 10:48:32 -04:00

10 lines
393 B
Plaintext

<div class="flex flex-row gap-2 mt-4">
<!-- "nihil boni sine labore" -->
<% hours.each_with_index do |h, i| %>
<div class="bg-white opacity-10 flex-grow min-w-[10px]"
title="<%= pluralize(i + 1, 'hour') %> ago, <%= pluralize(h[:users], 'people') %> logged time. '<%= FlavorText.latin_phrases.sample %>.'"
style="height: <%= h[:height] %>px;">
</div>
<% end %>
</div>