summaryrefslogtreecommitdiff
path: root/templates/_train_details.html.ep
diff options
context:
space:
mode:
Diffstat (limited to 'templates/_train_details.html.ep')
-rw-r--r--templates/_train_details.html.ep8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/_train_details.html.ep b/templates/_train_details.html.ep
index 167068e..0484388 100644
--- a/templates/_train_details.html.ep
+++ b/templates/_train_details.html.ep
@@ -324,12 +324,12 @@
<div class="db-attr"><a href="https://lib.finalrewind.org/dbdb/db_umlauf/<%= $departure->{train_no} %>.svg">Umlaufplan</a>
(ggf. fehlerhaft)</div>
% }
-% if ($details->{commonAttr}) {
-% if ($details->{attrVariants} and (not $details->{commonAttr}{vmax} or not $details->{commonAttr}{brakingPercentage})) {
+% if ($details->{attributes}) {
+% if (@{$details->{attributes}} > 1) {
<div class="db-attr">
Attribute:
<ul>
-% for my $attr (@{$details->{attrVariants} // [] }) {
+% for my $attr (@{$details->{attributes}}) {
<li><%= include '_train_attr', attr => $attr, with_station => 1 %></li>
% }
</ul>
@@ -337,7 +337,7 @@
% }
% else {
<div class="db-attr">
-%= include '_train_attr', attr => $details->{commonAttr}, with_station => 0
+%= include '_train_attr', attr => $details->{attributes}[0], with_station => 0
</div>
% }
% }