diff options
author | Daniel Friesel <derf@finalrewind.org> | 2015-10-09 21:40:29 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2015-10-09 21:40:29 +0200 |
commit | 0b4e9b6b25a12f9320938e18786a31b501c17d12 (patch) | |
tree | 8bb5125b3a9f39a3deb78fefe6ac90f9459b9e20 | |
parent | 09943158b6eaa50d1dcdb9adf9df9220b927e9fa (diff) |
infoscreen: More URA adjustments
-rw-r--r-- | templates/infoscreen.html.ep | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/infoscreen.html.ep b/templates/infoscreen.html.ep index aeed64e..bb6c565 100644 --- a/templates/infoscreen.html.ep +++ b/templates/infoscreen.html.ep @@ -104,9 +104,9 @@ <table class="scheduled"> % for my $stop ($departure->route_pre) { <tr class="routepre"><td class="time"> -%= $stop->[0]->strftime('%H:%M:%S') +%= $stop->time </td> - <td class="stop"><%= $stop->[1] %></td></tr> + <td class="stop"><%= $stop->name %></td></tr> % } <tr class="routenow"><td class="time"> <%= $departure->time %> @@ -114,9 +114,9 @@ <td class="stop"><%= $id_name %> <%= $id_stop %></td></tr> % for my $stop ($departure->route_post) { <tr class="routepost"><td class="time"> -%= $stop->[0]->strftime('%H:%M:%S') +%= $stop->time </td> - <td class="stop"><%= $stop->[1] %></td></tr> + <td class="stop"><%= $stop->name %></td></tr> % } </table> % } |