diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-10-04 23:27:45 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-10-04 23:27:45 +0200 |
commit | 6d45533c14a45b548080077bd154ee06af571bf3 (patch) | |
tree | 4f197d2e1d47bd3c7e14d22832d637dd455b9e5b /templates | |
parent | 3582ba317bdb736b6dc65e32d84fe09e7929ed8f (diff) |
mark cancelled stops in checkin view
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_checked_in.html.ep | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/templates/_checked_in.html.ep b/templates/_checked_in.html.ep index 053904a..44d57dc 100644 --- a/templates/_checked_in.html.ep +++ b/templates/_checked_in.html.ep @@ -200,9 +200,15 @@ <tbody> % for my $station (@{$journey->{route_after}}) { <tr><td><a class="action-checkout" data-station="<%= $station->[0] %>"><%= $station->[0] %> - % if ($station->[1]{rt_arr}) { + % if ($station->[2] and $station->[2] eq 'cancelled') { + <span style="float: right;">entfällt</span> + % } + % elsif ($station->[1]{rt_arr}) { <span style="float: right;"><%= $station->[1]{rt_arr}->strftime('%H:%M') %></span> % } + % elsif ($station->[2] and $station->[2] eq 'additional') { + <span style="float: right;">Zusatzhalt</span> + % } </a></td></tr> % } </tbody> @@ -247,9 +253,15 @@ % for my $station (@{$journey->{route_after}}) { % my $is_dest = ($journey->{arr_name} and $station->[0] eq $journey->{arr_name}); <tr><td><a style="<%= $is_dest? 'font-weight: bold;' : '' %>" class="action-checkout" data-station="<%= $station->[0] %>"><%= $station->[0] %> - % if ($station->[1]{rt_arr}) { + % if ($station->[2] and $station->[2] eq 'cancelled') { + <span style="float: right;">entfällt</span> + % } + % elsif ($station->[1]{rt_arr}) { <span style="float: right;"><%= $station->[1]{rt_arr}->strftime('%H:%M') %></span> % } + % elsif ($station->[2] and $station->[2] eq 'additional') { + <span style="float: right;">Zusatzhalt</span> + % } </a></td></tr> % } </tbody> |