diff options
Diffstat (limited to 'templates/history.html.ep')
-rw-r--r-- | templates/history.html.ep | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/templates/history.html.ep b/templates/history.html.ep index 24434d0..c7e6b6f 100644 --- a/templates/history.html.ep +++ b/templates/history.html.ep @@ -22,9 +22,14 @@ (+<%= ($travel->{rt_departure}->epoch - $travel->{sched_departure}->epoch) / 60 %>) % } </td> - <td><%= $travel->{rt_arrival}->strftime('%H:%M') %> - % if ($travel->{sched_arrival} != $travel->{rt_arrival}) { - (+<%= ($travel->{rt_arrival}->epoch - $travel->{sched_arrival}->epoch) / 60 %>) + <td> + % if ($travel->{rt_arrival}->epoch == 0 and $travel->{sched_arrival}->epoch == 0) { + <i class="material-icons">timer_off</i> + % } else { + %= $travel->{rt_arrival}->strftime('%H:%M'); + % if ($travel->{sched_arrival} != $travel->{rt_arrival}) { + (+<%= ($travel->{rt_arrival}->epoch - $travel->{sched_arrival}->epoch) / 60 %>) + % } % } </td> </tr> |