summaryrefslogtreecommitdiff
path: root/cgi/templates/single.html.ep
diff options
context:
space:
mode:
Diffstat (limited to 'cgi/templates/single.html.ep')
-rw-r--r--cgi/templates/single.html.ep49
1 files changed, 49 insertions, 0 deletions
diff --git a/cgi/templates/single.html.ep b/cgi/templates/single.html.ep
new file mode 100644
index 0000000..916c5b5
--- /dev/null
+++ b/cgi/templates/single.html.ep
@@ -0,0 +1,49 @@
+% if (@{$departures}) {
+
+% my $i = 0;
+% for my $departure (@{$departures}) {
+% $i++;
+<div class="s_display">
+<div class="s_platform">
+%= $departure->{platform}
+</div>
+<div class="s_time">
+%= $departure->{time}
+</div>
+<div class="s_train">
+%= $departure->{train}
+</div>
+<div class="s_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="s_destination">
+%= $departure->{destination}
+</div>
+% if ($departure->{info}) {
+<div class="s_info">
+%= $departure->{info}
+</div>
+% }
+</div> <!-- s_display -->
+% }
+
+% }
+% else {
+
+<div class="s_display">
+<div class="s_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>
+
+% }