dawarich/app/views/stats/_stat.html.erb

25 lines
767 B
Text
Raw Normal View History

2024-03-23 15:29:55 -04:00
<div id="<%= dom_id stat %>" class="card w-full bg-base-200 shadow-xl">
<div class="card-body">
<h2 class="card-title">
2024-05-23 14:12:23 -04:00
<%= link_to map_url(month_timespan(stat)), class: "underline hover:no-underline text-#{header_colors.sample}" do %>
2024-03-23 15:29:55 -04:00
<%= "#{Date::MONTHNAMES[stat.month]} of #{stat.year}" %>
<% end %>
</h2>
<p><%= stat.distance %>km</p>
<% if REVERSE_GEOCODING_ENABLED %>
<div class="card-actions justify-end">
<%= countries_and_cities_stat_for_month(stat) %>
</div>
<% end %>
<% if stat.daily_distance %>
<%= column_chart(
stat.daily_distance,
height: '100px',
suffix: ' km',
xtitle: 'Days',
ytitle: 'Distance'
) %>
<% end %>
2024-03-23 15:29:55 -04:00
</div>
</div>