diff options
Diffstat (limited to 'templates/infoscreen.html.ep')
-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> % } |