mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
unified train farbtupferl
(cherry picked from commit 20e8fd3985
)
Signed-off-by: Birte Kristina Friesel <derf@finalrewind.org>
This commit is contained in:
parent
dbbeaeea96
commit
824fb6973e
6 changed files with 18 additions and 17 deletions
|
@ -118,7 +118,7 @@ ul.suggestions {
|
|||
}
|
||||
}
|
||||
}
|
||||
.departures .dep-line {
|
||||
.dep-line {
|
||||
text-align: center;
|
||||
padding: .2rem;
|
||||
color: white;
|
||||
|
@ -131,7 +131,7 @@ ul.suggestions {
|
|||
width: fit-content;
|
||||
min-width: 6ch;
|
||||
margin: 0 auto;
|
||||
|
||||
|
||||
&.Bus, &.RUF, &.AST {
|
||||
background-color: #a3167e;
|
||||
border-radius: 5rem;
|
||||
|
|
|
@ -7,12 +7,7 @@
|
|||
<span class="card-title center-align">Ziel wählen</span>
|
||||
% }
|
||||
<span class="card-title center-align">
|
||||
% if ($journey->{train_line}) {
|
||||
<b><%= $journey->{train_type} %> <%= $journey->{train_line} %></b> <%= $journey->{train_no} %>
|
||||
% }
|
||||
% else {
|
||||
<%= $journey->{train_type} %> <%= $journey->{train_no} %>
|
||||
% }
|
||||
%= include '_format_train', journey => $journey
|
||||
</span>
|
||||
% if ($journey->{comment}) {
|
||||
<p><%= $journey->{comment} %></p>
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
<div class="card">
|
||||
<div class="card-content">
|
||||
<span class="card-title">Ausgecheckt</span>
|
||||
<p>Aus <%= $journey->{train_type} %> <%= $journey->{train_no} %>
|
||||
<p>Aus
|
||||
%= include '_format_train', journey => $journey
|
||||
bis <a href="/s/<%= $journey->{arr_eva} %>?hafas=<%= $journey->{train_id} =~ m{[|]} ? 1 : 0 %>"><%= $journey->{arr_name} %></a></p>
|
||||
% if (@{stash('connections_iris') // [] } or @{stash('connections_hafas') // []}) {
|
||||
<span class="card-title" style="margin-top: 2ex;">Verbindungen</span>
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
% if ($journey->{extra_data}{wagonorder_pride}) {
|
||||
🏳️🌈
|
||||
% }
|
||||
<span class="dep-line <%= $journey->{train_type} // q{} %>">
|
||||
<%= $journey->{train_type} %>
|
||||
<%= $journey->{train_line} // $journey->{train_no}%>
|
||||
</span>
|
||||
% if ($journey->{train_line}) {
|
||||
<b><%= $journey->{train_type} %> <%= $journey->{train_line} %></b> <%= $journey->{train_no} %>
|
||||
% }
|
||||
% else {
|
||||
<%= $journey->{train_type} %> <%= $journey->{train_no} %>
|
||||
<%= $journey->{train_no} %>
|
||||
% }
|
||||
|
|
|
@ -17,7 +17,11 @@
|
|||
% }
|
||||
<tr>
|
||||
<td><%= $travel->{sched_departure}->strftime($date_format) %></td>
|
||||
<td><a href="<%= $detail_link %>"><%= $travel->{type} %> <%= $travel->{line} // $travel->{no} %></a></td>
|
||||
<td><a href="<%= $detail_link %>">
|
||||
<span class="dep-line <%= $travel->{type} // q{} %>">
|
||||
<%= $travel->{type} %> <%= $travel->{line} // $travel->{no}%>
|
||||
</span>
|
||||
</a></td>
|
||||
<td>
|
||||
<a href="<%= $detail_link %>" class="unmarked">
|
||||
% if (param('cancelled')) {
|
||||
|
|
|
@ -25,9 +25,9 @@
|
|||
<div class="card-content">
|
||||
<span class="card-title">Ausfall dokumentieren</span>
|
||||
<p>Prinzipiell wärest du nun eingecheckt in
|
||||
<%= $status->{train_type} %> <%= $status->{train_no} %>
|
||||
%= include '_format_train', journey => $status
|
||||
ab <%= $status->{dep_name} %>, doch diese Fahrt fällt aus.
|
||||
</p>
|
||||
</p>
|
||||
<p>Falls du den Ausfall z.B. für Fahrgastrechte
|
||||
dokumentieren möchtest, wähle bitte jetzt das
|
||||
vorgesehene Ziel aus.</p>
|
||||
|
@ -75,7 +75,7 @@
|
|||
% }
|
||||
</div>
|
||||
</div>
|
||||
<h1>Letzte Fahrten</h1>
|
||||
<h2 style="margin-left: 0.75rem;">Letzte Fahrten</h2>
|
||||
%= include '_history_trains', date_format => '%d.%m', journeys => [journeys->get(uid => current_user->{id}, limit => 5, with_datetime => 1)];
|
||||
% }
|
||||
% else {
|
||||
|
|
Loading…
Reference in a new issue