diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_train_details.html.ep | 9 | ||||
-rw-r--r-- | templates/app.html.ep | 4 |
2 files changed, 9 insertions, 4 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}) { diff --git a/templates/app.html.ep b/templates/app.html.ep index d6d07b6..fd7c1f1 100644 --- a/templates/app.html.ep +++ b/templates/app.html.ep @@ -83,8 +83,8 @@ %= $departure->{train_line} % } % elsif ($departure->{train_no}) { -% if (exists $ice_type->{$departure->{train_no}}) { - <span class="trainsubtype"><%= $ice_type->{$departure->{train_no}} %></span> +% if (exists $ice_type->{$departure->{train_no}} and $ice_type->{$departure->{train_no}}[1]) { + <span class="trainsubtype"><%= $ice_type->{$departure->{train_no}}[1] %></span> % } <span class="trainno"><%= $departure->{train_no} %></span> % } |