diff options
-rw-r--r-- | index.pl | 1 | ||||
-rw-r--r-- | templates/infoscreen.html.ep | 7 |
2 files changed, 8 insertions, 0 deletions
@@ -61,6 +61,7 @@ sub get_results { elsif ( $backend eq 'aseag' ) { $status = Travel::Status::DE::ASEAG->new( stop => ( $city ? "${city} ${stop}" : $stop ), + full_routes => 'after', ); } else { diff --git a/templates/infoscreen.html.ep b/templates/infoscreen.html.ep index 6d4ff72..45f2772 100644 --- a/templates/infoscreen.html.ep +++ b/templates/infoscreen.html.ep @@ -41,6 +41,13 @@ % if ($departure->can('lineref') and $departure->lineref) { %= $departure->lineref->route % } +% elsif ($departure->can('route_timetable')) { +% my @first_deps = ($departure->route_timetable)[0..2]; +% delete $first_deps[2] unless defined $first_deps[2]; +% delete $first_deps[1] unless defined $first_deps[1]; +% delete $first_deps[0] unless defined $first_deps[0]; +%= join(' - ', map { $_->[1] } @first_deps ); +% } </span> <span class="dest"> %= $departure->destination |