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

19 lines
603 B
Text
Raw Normal View History

<h2 class='text-3xl font-bold mt-10'>
<%= link_to year, "/stats/#{year}", class: "underline hover:no-underline text-#{header_colors.sample}" %>
2024-05-23 14:12:23 -04:00
<%= link_to '[Map]', map_url(year_timespan(year)), class: 'underline hover:no-underline' %>
</h2>
<div class='my-10'>
<%= column_chart(
2024-05-25 07:45:49 -04:00
Stat.year_distance(year, current_user),
height: '200px',
2024-08-28 17:54:00 -04:00
suffix: " #{DISTANCE_UNIT}",
xtitle: 'Days',
ytitle: 'Distance'
) %>
</div>
<div class="mt-5 grid grid-cols-1 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 p-4">
<% stats.each do |stat| %>
<%= render stat %>
<% end %>
</div>