diff options
Diffstat (limited to 'templates/_checked_in.html.ep')
-rw-r--r-- | templates/_checked_in.html.ep | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/templates/_checked_in.html.ep b/templates/_checked_in.html.ep index 2a25721..91cd37a 100644 --- a/templates/_checked_in.html.ep +++ b/templates/_checked_in.html.ep @@ -27,7 +27,15 @@ Ziel erreicht % } % if ($journey->{arrival_countdown} < (60 * 15) and $journey->{arr_platform}) { - <br/>auf Gleis <%= $journey->{arr_platform} %> + % if ($journey->{arr_direction} and $journey->{arr_direction} eq 'r') { + <br/>Gleis <%= $journey->{arr_platform} %> ▶ + % } + % elsif ($journey->{arr_direction} and $journey->{arr_direction} eq 'l') { + <br/>◀ Gleis <%= $journey->{arr_platform} %> + % } + % else { + <br/>auf Gleis <%= $journey->{arr_platform} %> + % } % } % } % elsif ($journey->{arr_name}) { |