summaryrefslogtreecommitdiff
path: root/templates/_history_years_list.html.ep
blob: e91ebcafa45fa61b3b0425e92a58aeb5bda1de8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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>