From 2e1cf302316d129837a7bb37ec67c77cac8820ef Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 20 Mar 2019 17:50:14 +0100 Subject: Show negative delay as "-X", not "+-X" --- templates/history.html.ep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'templates/history.html.ep') diff --git a/templates/history.html.ep b/templates/history.html.ep index c2e6f88..af24eed 100644 --- a/templates/history.html.ep +++ b/templates/history.html.ep @@ -47,7 +47,7 @@ % else { <%= $travel->{rt_departure}->strftime('%H:%M') %> % if ($travel->{sched_departure} != $travel->{rt_departure}) { - (+<%= ($travel->{rt_departure}->epoch - $travel->{sched_departure}->epoch) / 60 %>) + (<%= sprintf('%+d', ($travel->{rt_departure}->epoch - $travel->{sched_departure}->epoch) / 60) %>) % } % } @@ -61,7 +61,7 @@ % } else { %= $travel->{rt_arrival}->strftime('%H:%M'); % if ($travel->{sched_arrival} != $travel->{rt_arrival}) { - (+<%= ($travel->{rt_arrival}->epoch - $travel->{sched_arrival}->epoch) / 60 %>) + (<%= sprintf('%+d', ($travel->{rt_arrival}->epoch - $travel->{sched_arrival}->epoch) / 60) %>) % } % } % } -- cgit v1.2.3