diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-05-01 12:29:59 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-05-01 12:29:59 +0200 |
commit | 35bf3022330602242d0d8dbf7a7b2a7b2bd66e71 (patch) | |
tree | 8072db177e5bf95500f72e82fdc2857561a4e0c4 /templates | |
parent | f0bbf6b8ab0b9ad5c8f8503792cdc807731280ab (diff) |
Indicate carriages belonging to other trains in carriage formation preview
Diffstat (limited to 'templates')
-rw-r--r-- | templates/_train_details.html.ep | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/templates/_train_details.html.ep b/templates/_train_details.html.ep index 0f02483..425446a 100644 --- a/templates/_train_details.html.ep +++ b/templates/_train_details.html.ep @@ -124,11 +124,13 @@ % } <a href="/_wr/<%= $departure->{train_no} %>/<%= $departure->{wr_link} %>?e=<%= $departure->{wr_direction} // '' %>"> %= $direction - % if (defined $departure->{direction_num} and $departure->{direction_num} != $wr->direction) { - %= join(q{ }, reverse @{$departure->{wr_preview} // []}) - % } - % else { - %= join(q{ }, @{$departure->{wr_preview} // []}) + % for my $entry ((defined $departure->{wr_direction_num} and $departure->{wr_direction_num} != $wr->direction) ? reverse @{$departure->{wr_preview} // []} : @{$departure->{wr_preview} // []}) { + % if ($entry->[1]) { + <span class="<%= $entry->[1] %>"><%= $entry->[0] %></span> + % } + % else { + %= $entry->[0] + % } % } %= $direction </a> |