diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-01-07 18:28:53 +0100 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-01-07 18:28:53 +0100 |
commit | cd4e1246ca33b7f0056be36a640bc2a7340a6667 (patch) | |
tree | 827bd80c38fa84974413a1c7100e79673f4b2bdd /templates/_train_details.html.ep | |
parent | 27bb2b67af84529cd5ee7a61e77008614d868c34 (diff) |
show planned IC/ICE type in detail view
Diffstat (limited to 'templates/_train_details.html.ep')
-rw-r--r-- | templates/_train_details.html.ep | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/templates/_train_details.html.ep b/templates/_train_details.html.ep index 444fe9a..0ace74c 100644 --- a/templates/_train_details.html.ep +++ b/templates/_train_details.html.ep @@ -73,9 +73,14 @@ % } % } </div> <!-- timeinfo --> -% if ($departure->{wr_link}) { +% if ($departure->{wr_link} or ($icetype and $icetype->[1])) { <div class="verbose"> - <a href="/_wr/<%= $departure->{train_no} %>/<%= $departure->{wr_link} %>">Wagenreihung</a> +% if ($departure->{wr_link}) { + <a href="/_wr/<%= $departure->{train_no} %>/<%= $departure->{wr_link} %>">Wagenreihung</a> +% } +% if ($icetype and $icetype->[1]) { + (Plan: <%= $icetype->[0] %>)<br/> +% } </div> % } % if ($departure->{trip_id}) { |