summaryrefslogtreecommitdiff
path: root/templates/_history_years.html.ep
blob: 55917995c78fcfc560a4bde22a184c03a3276772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="row">
	<div class="col s12">
		% my @years = journeys->get_nav_years(uid => current_user->{id});
		% if (@years) {
			<ul class="pagination">
				% for my $year (@years) {
					% my $link_to = $year->[0];
					% my $text = $year->[1];
					% my $class = $link_to eq $current ? 'active' : 'waves-effect';
					<li class="<%= $class %>"><a href="/history/<%= $link_to %>"><%= $text %></a></li>
				% }
			</ul>
		% }
		% else {
			Keine Fahrten gefunden.
		% }
	</div>
</div>