summaryrefslogtreecommitdiff
path: root/templates/clean.html.ep
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2015-05-20 14:11:46 +0200
committerDaniel Friesel <derf@finalrewind.org>2015-05-20 14:11:46 +0200
commit9b6efdb7df4a93b9d40b567053830c9194c0d473 (patch)
tree9c5a4ce4c5447e2587077bfb78bbc0d1601619c2 /templates/clean.html.ep
parenta300fcdacd9296a13e293f15d047b94dd7f55bed (diff)
do not strike through cancelled trains, mark them yellow-ish instead
Diffstat (limited to 'templates/clean.html.ep')
-rw-r--r--templates/clean.html.ep9
1 files changed, 6 insertions, 3 deletions
diff --git a/templates/clean.html.ep b/templates/clean.html.ep
index 8ee8173..0bbdf54 100644
--- a/templates/clean.html.ep
+++ b/templates/clean.html.ep
@@ -16,13 +16,16 @@
% my $extraclasses = q{};
% if ($departure->{is_cancelled}) {
% $extraclasses .= ' cancelled';
+ <li class="cancelled">
+% }
+% else {
+ <li>
% }
- <li>
% my $linetype = q{};
% if ( $departure->{train_type} eq 'S' ) {
% $linetype = 'sbahn';
% }
- <span class="line <%= $linetype %> <%= $extraclasses %>">
+ <span class="line <%= $linetype %>">
% if ($departure->{train_type} and $departure->{train_no}) {
%= $departure->{train_type}
% }
@@ -143,7 +146,7 @@
<span class="dest <%= $extraclasses %>">
%= $departure->{destination}
</span>
- <span class="countdown">
+ <span class="countdown <%= $extraclasses %>">
% if ($departure->{delay} and not $departure->{is_cancelled}) {
% if ($show_realtime) {
% if ($departure->{delay} > 0) {