mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
23 lines
949 B
Text
23 lines
949 B
Text
<div class="row">
|
|
<div class="col s12">
|
|
<ul class="pagination">
|
|
% my ($prev, $current, $next) = journeys->get_nav_months(uid => current_user->{id}, year => $year, month => $month);
|
|
% if ($prev) {
|
|
<li class="waves-effect waves-light"><a href="/history/<%= $prev->[0] %>"><i class="material-icons">chevron_left</i></a></li>
|
|
% }
|
|
% else {
|
|
<li class="disabled"><a href="#!"><i class="material-icons">chevron_left</i></a></li>
|
|
% }
|
|
% if ($current) {
|
|
<li class="" style="min-width: 8em;"><a href="/history/<%= $current->[0] %>"><%= $current->[1] %></a></li>
|
|
% }
|
|
% if ($next) {
|
|
<li class="waves-effect waves-light"><a href="/history/<%= $next->[0] %>"><i class="material-icons">chevron_right</i></a></li>
|
|
% }
|
|
% else {
|
|
<li class="disabled"><a href="#!"><i class="material-icons">chevron_right</i></a></li>
|
|
% }
|
|
<li class=""><a href="/history/<%= $year %>"><%= $year %></a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|