summaryrefslogtreecommitdiff
path: root/templates/wagen.html.ep
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2020-12-25 21:55:11 +0100
committerDaniel Friesel <derf@finalrewind.org>2020-12-25 21:55:11 +0100
commit698aae7e0f8ba86ea1a3562863c65915dde36028 (patch)
treed51e4cc294b58d0deaff1d25ee336a3b21233d7a /templates/wagen.html.ep
parentde9ea41ca265860947e6df94ab6b4934331876bc (diff)
also show exit direction in wagon view
Diffstat (limited to 'templates/wagen.html.ep')
-rw-r--r--templates/wagen.html.ep14
1 files changed, 11 insertions, 3 deletions
diff --git a/templates/wagen.html.ep b/templates/wagen.html.ep
index 68cf221..9cf4793 100644
--- a/templates/wagen.html.ep
+++ b/templates/wagen.html.ep
@@ -6,7 +6,7 @@
% }
% if (defined $wref->{d}) {
<div style="text-align: center;">
- % if ($wref->{d} == 100) {
+ % if ($wref->{d} == 0) {
<i class="material-icons">arrow_back</i>
% }
% else {
@@ -14,12 +14,20 @@
% }
</div>
% }
- <div>
+ % if ($wref->{e} eq 'u') {
+ <div style="float: left;"><i class="material-icons">arrow_upward</i></div>
+ <div style="float: right;"><i class="material-icons">arrow_upward</i></div>
+ % }
+ <div style="clear: both;">
<a href="<%= $wagon_file %>"><img src="<%= $wagon_file %>" style="width: 100%;"></a>
</div>
+ % if ($wref->{e} eq 'd') {
+ <div style="float: left;"><i class="material-icons">arrow_downward</i></div>
+ <div style="float: right;"><i class="material-icons">arrow_downward</i></div>
+ % }
% if (defined $wref->{d}) {
<div style="text-align: center;">
- % if ($wref->{d} == 100) {
+ % if ($wref->{d} == 0) {
<i class="material-icons">arrow_back</i>
% }
% else {