diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_history_years_list.html.ep | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/_history_years_list.html.ep b/templates/_history_years_list.html.ep new file mode 100644 index 0000000..e91ebca --- /dev/null +++ b/templates/_history_years_list.html.ep @@ -0,0 +1,13 @@ +<div class="row"> + <div class="col s12"> + <div class="collection"> + % for my $year (journeys->get_years(uid => current_user->{id})) { + <a class="collection-item" href="/history/<%= $year->[0] %>"><%= $year->[1] %> + % if (defined $year->[2]{km_route}) { + <span class="secondary-content"><%= sprintf('%.f', $year->[2]{km_route}) %> km</span> + % } + </a> + % } + </div> + </div> +</div> |