Skip to content
This repository has been archived by the owner on Nov 11, 2023. It is now read-only.

Commit

Permalink
infoscreen: More URA adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
derf committed Oct 9, 2015
1 parent 0994315 commit 0b4e9b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/infoscreen.html.ep
Expand Up @@ -104,19 +104,19 @@
<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 %>
</td>
<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>
% }
Expand Down

0 comments on commit 0b4e9b6

Please sign in to comment.