fix pride ICE not being indicated in public status card

This commit is contained in:
Derf Null 2023-05-18 08:25:19 +02:00
parent 671e518caf
commit 72f6c2ea2d
No known key found for this signature in database
GPG key ID: 19E6E524EBB177BA
3 changed files with 20 additions and 7 deletions

View file

@ -1178,6 +1178,12 @@ sub startup {
wagons => [@wagons], wagons => [@wagons],
} }
); );
if ( $group->{fahrzeuggruppebezeichnung}
and $group->{fahrzeuggruppebezeichnung} eq
'ICE0304' )
{
$data->{wagonorder_pride} = 1;
}
} }
$self->in_transit->update_data( $self->in_transit->update_data(
uid => $uid, uid => $uid,

View file

@ -3,7 +3,9 @@
<div class="card"> <div class="card">
<div class="card-content"> <div class="card-content">
<i class="material-icons small right sync-failed-marker grey-text" style="display: none;">sync_problem</i> <i class="material-icons small right sync-failed-marker grey-text" style="display: none;">sync_problem</i>
<span class="card-title">Eingecheckt in <%= $journey->{train_type} %> <%= $journey->{train_no} %></span> <span class="card-title">
Eingecheckt in <%= $journey->{train_type} %> <%= $journey->{train_no} %>
</span>
% if ($journey->{comment}) { % if ($journey->{comment}) {
<p><%= $journey->{comment} %></p> <p><%= $journey->{comment} %></p>
% } % }

View file

@ -12,12 +12,17 @@
<p>„<%= $journey->{comment} %>“</p> <p>„<%= $journey->{comment} %>“</p>
% } % }
<p> <p>
<div class="center-align">
% if ($journey->{train_line}) { % if ($journey->{train_line}) {
<div class="center-align"><b><%= $journey->{train_type} %> <%= $journey->{train_line} %></b> <%= $journey->{train_no} %></div> <b><%= $journey->{train_type} %> <%= $journey->{train_line} %></b> <%= $journey->{train_no} %>
% } % }
% else { % else {
<div class="center-align"><b><%= $journey->{train_type} %> <%= $journey->{train_no} %></b></div> <b><%= $journey->{train_type} %> <%= $journey->{train_no} %></b>
% } % }
% if ($journey->{extra_data}{wagonorder_pride}) {
🏳️‍🌈
% }
</div>
<div class="center-align countdown" <div class="center-align countdown"
data-duration="<%= $journey->{journey_duration} // 0 %>" data-duration="<%= $journey->{journey_duration} // 0 %>"
% if (param('token')) { % if (param('token')) {