diff options
| -rw-r--r-- | templates/_train_details.html.ep | 14 | 
1 files changed, 13 insertions, 1 deletions
| diff --git a/templates/_train_details.html.ep b/templates/_train_details.html.ep index a7ad86e..9e7a7f2 100644 --- a/templates/_train_details.html.ep +++ b/templates/_train_details.html.ep @@ -173,7 +173,19 @@  %         }            </li>  %       } -        <li class="<%= $departure->{is_cancelled} ? 'cancelled-stop' : q{} %>"><%= $departure->{departure} // $departure->{arrival} // q{} %> <strong><%= $station_name %></strong></li> +        <li class="<%= $departure->{is_cancelled} ? 'cancelled-stop' : q{} %>"><%= $departure->{sched_departure} // $departure->{sched_arrival} // q{} %> +%         if ($departure->{sched_departure}) { +%           if ($departure->{departure} ne $departure->{sched_departure}) { +              (heute <%= $departure->{departure} %>) +%           } +%         } +%         elsif ($departure->{arrival}) { +%           if ($departure->{arrival} ne $departure->{sched_arrival}) { +              (heute <%= $departure->{arrival} %>) +%           } +%         } +          <strong><%= $station_name %></strong> +        </li>  %       for my $stop (@{$departure->{route_post_diff}}) {            <li>            <a href="/<%= $stop->{name} %>#<%= $departure->{train_type} . $departure->{train_no} %>" class=" | 
