From 8a9ba07442a192bb83d079d1b6ff8b9087756588 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Sun, 28 Apr 2024 15:57:40 +0200 Subject: move coach sequence preview generation from template into Controller --- templates/_train_details.html.ep | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) (limited to 'templates/_train_details.html.ep') diff --git a/templates/_train_details.html.ep b/templates/_train_details.html.ep index d70ef30..1b7bfce 100644 --- a/templates/_train_details.html.ep +++ b/templates/_train_details.html.ep @@ -118,31 +118,18 @@ % if (my $wr = $departure->{wr}) {
-% my @wagons = $wr->wagons; % my $direction = defined $wr->direction ? $wr->direction == 100 ? '→' : '←' : q{}; % if ($departure->{direction}) { % $direction = $departure->{direction} eq 'l' ? '◀' : '▶'; -% if (($departure->{direction} eq 'l' ? 0 : 100) != $wr->direction) { -% @wagons = reverse @wagons; -% } % } %= $direction -% my $gi; -% for my $wagon (@wagons) { -% if (not ($wagon->is_locomotive or $wagon->is_powercar)) { -% if (defined $gi and $gi != $wagon->group_index) { - • -% } -% if ($wagon->is_closed) { - X -% } -% else { -%= $wagon->number || ($wagon->type =~ m{AB} ? '½' : $wagon->type =~ m{A} ? '1.' : $wagon->type =~ m{B} ? '2.' : $wagon->type ) -% } -% } -% $gi = $wagon->group_index; -% } + % if (defined $departure->{direction_num} and $departure->{direction_num} != $wr->direction) { + %= join(q{ }, reverse @{$departure->{wr_preview} // []}) + % } + % else { + %= join(q{ }, @{$departure->{wr_preview} // []}) + % } %= $direction
-- cgit v1.2.3