summaryrefslogtreecommitdiff
path: root/templates/single.html.ep
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2014-08-20 18:49:06 +0200
committerDaniel Friesel <derf@finalrewind.org>2014-08-20 18:49:06 +0200
commit8dfc0c027758929345f428c3a24f1b9221f9c81e (patch)
treeafff867c9f544743b3b613e7c0e66a9b20c10126 /templates/single.html.ep
parentfd26aad769b97b432c254f251b7037d9a3c7db61 (diff)
move application from cgi directory to the project root
Diffstat (limited to 'templates/single.html.ep')
-rw-r--r--templates/single.html.ep54
1 files changed, 54 insertions, 0 deletions
diff --git a/templates/single.html.ep b/templates/single.html.ep
new file mode 100644
index 0000000..7376eb4
--- /dev/null
+++ b/templates/single.html.ep
@@ -0,0 +1,54 @@
+% if (@{$departures}) {
+
+<div class="displaysingle">
+% my $i = 0;
+% for my $departure (@{$departures}) {
+% $i++;
+<div class="display">
+<div class="platform">
+%= $departure->{platform}
+</div>
+<div class="time">
+%= $departure->{time}
+</div>
+<div class="train">
+%= $departure->{train}
+</div>
+<div class="via">
+% my $via_max = @{$departure->{via}};
+% my $via_cur = 0;
+% for my $stop (@{$departure->{via}}) {
+% $via_cur++;
+<span><%= $stop %><% if ($via_cur < $via_max) { %> - <% } %></span>
+% }
+</div>
+<div class="destination">
+%= $departure->{destination}
+</div>
+% if ($departure->{info}) {
+<div class="info">
+<marquee behaviour="scroll" scrollamount="1" direction="left">
+%= $departure->{info}
+</marquee>
+</div>
+% }
+</div> <!-- display -->
+% }
+
+</div> <!-- displaysingle -->
+
+% }
+% else {
+
+<div class="display">
+<div class="no_data">
+Bitte Ansage beachten
+</div>
+</div>
+
+<p>
+DB-Fakedisplay displays the next departures at a DB station, just like the big
+LC display in the station itself.
+</p>
+
+% }