summaryrefslogtreecommitdiff
path: root/templates/journey.html.ep
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-03-19 21:23:06 +0100
committerDaniel Friesel <derf@finalrewind.org>2019-03-19 21:23:06 +0100
commit531f3b0a68ace87dc514a1350971b647c39633b5 (patch)
tree825851172475d5a19cf2593a99a803648fdf45b3 /templates/journey.html.ep
parent01df965d66fa7223e98036908ed4f60dda5942f8 (diff)
show cancelled trains in history
Diffstat (limited to 'templates/journey.html.ep')
-rw-r--r--templates/journey.html.ep21
1 files changed, 18 insertions, 3 deletions
diff --git a/templates/journey.html.ep b/templates/journey.html.ep
index 6c49538..abd9ba8 100644
--- a/templates/journey.html.ep
+++ b/templates/journey.html.ep
@@ -14,7 +14,12 @@
<div class="row">
<div class="col s12">
<p>
- Fahrt von
+ % if ($journey->{cancelled}) {
+ Ausgefallene Fahrt von
+ % }
+ % else {
+ Fahrt von
+ % }
<b><%= $journey->{from_name} %></b>
nach
<b><%= $journey->{to_name} %></b>
@@ -34,7 +39,11 @@
<tr>
<th scope="row">Abfahrt</th>
<td>
- % if ($journey->{rt_departure} != $journey->{sched_departure}) {
+ % if ($journey->{cancelled}) {
+ <i class="material-icons">cancel</i>
+ (Plan: <%= $journey->{sched_departure}->strftime('%H:%M'); %>)
+ % }
+ % elsif ($journey->{rt_departure} != $journey->{sched_departure}) {
%= $journey->{rt_departure}->strftime('%H:%M');
(+<%= ($journey->{rt_departure}->epoch - $journey->{sched_departure}->epoch) / 60 %>,
Plan: <%= $journey->{sched_departure}->strftime('%H:%M'); %>)
@@ -47,7 +56,13 @@
<tr>
<th scope="row">Ankunft</th>
<td>
- % if ($journey->{rt_arrival}->epoch == 0 and $journey->{sched_arrival}->epoch == 0) {
+ % if ($journey->{cancelled}) {
+ <i class="material-icons">cancel</i>
+ % if ($journey->{sched_arrival}->epoch != 0) {
+ (Plan: <%= $journey->{sched_arrival}->strftime('%H:%M'); %>)
+ % }
+ % }
+ % elsif ($journey->{rt_arrival}->epoch == 0 and $journey->{sched_arrival}->epoch == 0) {
<i class="material-icons">timer_off</i>
% }
% elsif ($journey->{rt_arrival} != $journey->{sched_arrival}) {