diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-11-21 15:33:43 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-11-21 15:34:06 +0100 |
commit | ccfdd8007e136d5d98652d415dda8eb595a2ada9 (patch) | |
tree | 6b685625b796dfe3c251ab012a80239c6d3d1795 /templates/_history_months_for_year.html.ep | |
parent | e3fba3dcd493f609e107435867c4a67cb7ee420f (diff) |
testing a more organized history navigation1.18.9
Diffstat (limited to 'templates/_history_months_for_year.html.ep')
-rw-r--r-- | templates/_history_months_for_year.html.ep | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/_history_months_for_year.html.ep b/templates/_history_months_for_year.html.ep new file mode 100644 index 0000000..c6a64de --- /dev/null +++ b/templates/_history_months_for_year.html.ep @@ -0,0 +1,16 @@ +<div class="row"> + <div class="col s12"> + <div class="collection"> + % for my $month (journeys->get_months_for_year(uid => current_user->{id}, year => $year)) { + % if (defined $month->[2]) { + <a class="collection-item" href="/history/<%= $month->[0] %>"><%= $month->[1] %> + <span class="secondary-content"><%= sprintf('%.f', $month->[2]{km_route}) %> km</span> + </a> + % } + % else { + <div class="collection-item disabled"><%= $month->[1] %></div> + % } + % } + </div> + </div> +</div> |