diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_train_details.html.ep | 42 | ||||
-rw-r--r-- | templates/zugbildung_db.html.ep | 6 |
2 files changed, 43 insertions, 5 deletions
diff --git a/templates/_train_details.html.ep b/templates/_train_details.html.ep index a1299ac..55daae3 100644 --- a/templates/_train_details.html.ep +++ b/templates/_train_details.html.ep @@ -116,7 +116,7 @@ <a class="smallbutton" href="/_wr/<%= $departure->{train_no} %>/<%= $departure->{wr_link} %>"><i class="material-icons" aria-hidden="true">train</i> Wagenreihung </a> % } -% elsif ($icetype and $icetype->[2] and $linetype eq 'fern') { +% elsif ($icetype and $icetype->[2] and ($linetype eq 'fern' or $departure->{train_type} =~ m{NJ})) { <a class="smallbutton" href="/wr/<%= $departure->{train_no} %>"><i class="material-icons" aria-hidden="true">train</i> Plan: <%= $icetype->[0] %></a> % } % elsif ($icetype and $icetype->[1] and $linetype eq 'fern') { @@ -228,4 +228,44 @@ % } </ul> <!-- mroute --> % } +% if ($details and not $departure->{arrival}) { +% if (my $s = $details->{route}{preStart}) { + Zug wird voraussichtlich aus <%= $s %> eingesetzt.<br/><br/> +% } +% if ($details->{cycle}{from}) { + Bildung möglicherweise aus + <ul> +% for my $train_no (sort {$a <=> $b} @{ $details->{cycle}{from} // [] }) { +% my $train = app->train_details_db->{$train_no}; +% my $tt = $train->{type} // $train->{raw} // 'Zug'; +% $tt =~ s{ .*|[0-9]}{}; + <li><%= $tt %> <%= $train_no %> +% if ($train->{route}{start} and $train->{route}{end}) { + <%= $train->{route}{start} %> → <%= $train->{route}{end} %> +% } + </li> +% } + </ul> +% } +% } +% elsif ($details and not $departure->{departure}) { +% if (my $e = $details->{route}{postEnd}) { + Zug wird voraussichtlich in <%= $e %> abgestellt.<br/><br/> +% } +% if ($details->{cycle}{to}) { + Weiterfahrt möglicherweise als + <ul> +% for my $train_no (sort {$a <=> $b} @{ $details->{cycle}{to} // [] }) { +% my $train = app->train_details_db->{$train_no}; +% my $tt = $train->{type} // $train->{raw} // 'Zug'; +% $tt =~ s{ .*|[0-9]}{}; + <li><%= $tt %> <%= $train_no %> +% if ($train->{route}{start} and $train->{route}{end}) { + <%= $train->{route}{start} %> → <%= $train->{route}{end} %> +% } + </li> +% } + </ul> +% } +% } </div> <!-- mfooter --> diff --git a/templates/zugbildung_db.html.ep b/templates/zugbildung_db.html.ep index 5ed4839..0eb43e3 100644 --- a/templates/zugbildung_db.html.ep +++ b/templates/zugbildung_db.html.ep @@ -7,9 +7,7 @@ </div> % } <div class="container"> - <div style="text-align: center;"> -%= $zb->{route} - </div> + <div style="text-align: center;"><%= $route %></div> Vorgesehener Zugtyp: <%= $zb->{type} %> </div> <div class="container"> @@ -21,7 +19,7 @@ <div> Quelle: <a href="https://data.deutschebahn.com/dataset/zugbildungsplanzugbildungsplan-zpar">DB Zugbildungsplan</a> mit <a href="https://github.com/derf/db-wagenreihung-to-json">automatisierter Nachbearbeitung</a>.<br/> - Fehler sind möglich.<br/> + Nachbearbeitungsbedingte Fehler sind wahrscheinlich.<br/> Daten © 2020 DB Fernverkehr AG, lizensiert unter CC-BY 4.0. </div> |