summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-08-21 12:11:35 +0200
committerDaniel Friesel <derf@finalrewind.org>2021-08-21 12:11:35 +0200
commitf5a6a5927bfcc4a2b82c34db5041bfe3a49b95e6 (patch)
treed9508512ae32be6ecc865607539c16566db2756e /templates
parent8a04cf20c5d6dc577a7de7745cbeb292bf78529d (diff)
refresh departure list every minute0.2.0
Diffstat (limited to 'templates')
-rw-r--r--templates/departure_list.html81
-rw-r--r--templates/departures_page.html35
2 files changed, 59 insertions, 57 deletions
diff --git a/templates/departure_list.html b/templates/departure_list.html
index a9cda01..66e2900 100644
--- a/templates/departure_list.html
+++ b/templates/departure_list.html
@@ -1,59 +1,26 @@
-<!DOCTYPE html>
-<html lang="de">
-<head>
- <title>{{ title }}</title>
- {% include 'header.html' %}
-</head>
-<body>
-
-{% include 'navbar.html' %}
-
-<div class="container">
- <div class="content">
- {% if warning %}
- <div class="content">
- <div class="warning">
- <strong>{{ warning["lead"] }}</strong>
- {{ warning["body"] }}
- <div class="errcode">{{ warning["code"] }}</div>
- </div>
- </div>
+{% for departure in departures %}
+ <li class="{{ departure.classes }}" onclick="location.href='https://dbf.finalrewind.org/map/{{ departure.tripId }}/0?from={{ departure.quoted_stop_name }}';">
+ <span class="line {{ departure.line.css_class }}">{{ departure.line.name }}</span>
+ {% if departure.suffix %}
+ <span class="destsuffix">{{ departure.suffix }}</span>
{% endif %}
- {% if not departures %}
- <div class="globalnote">Keine Abfahrten innerhalb der nächsten zwei Stunden</div>
+ <span class="dest" aria-label="nach {{ departure.direction }}">{{ departure.direction }}
+ </span>
+ {% if departure.cancelled and departure.plannedWhen %}
+ <span class="time" aria-label="fällt aus, planmäßige Abfahrt um {{ departure.plannedWhen }}">
+ <span class="delay">fällt aus</span>
+ {{ departure.plannedWhen.strftime("%H:%M") }}
+ </span>
+ {% else %}
+ <span class="time" aria-label="Abfahrtszeit: {{ departure.relativeWhen }}">
+ {% if departure.delay %}
+ <span class="delay" aria-label="{{ departure.delay }} Minuten Verspätung">({{ departure.delay }})</span>
+ {% endif %}
+ {{ departure.relativeWhen }}
+ </span>
{% endif %}
- <ul class="departures">
- {% for departure in departures %}
- <li class="{{ departure.classes }}" onclick="location.href='https://dbf.finalrewind.org/map/{{ departure.tripId }}/0?from={{ departure.quoted_stop_name }}';">
- <span class="line {{ departure.line.css_class }}">{{ departure.line.name }}</span>
- {% if departure.suffix %}
- <span class="destsuffix">{{ departure.suffix }}</span>
- {% endif %}
- <span class="dest" aria-label="nach {{ departure.direction }}">{{ departure.direction }}
- </span>
- {% if departure.cancelled and departure.plannedWhen %}
- <span class="time" aria-label="fällt aus, planmäßige Abfahrt um {{ departure.plannedWhen }}">
- <span class="delay">fällt aus</span>
- {{ departure.plannedWhen.strftime("%H:%M") }}
- </span>
- {% else %}
- <span class="time" aria-label="Abfahrtszeit: {{ departure.relativeWhen }}">
- {% if departure.delay %}
- <span class="delay" aria-label="{{ departure.delay }} Minuten Verspätung">({{ departure.delay }})</span>
- {% endif %}
- {{ departure.relativeWhen }}
- </span>
- {% endif %}
- {% if departure.platform %}
- <span class="platform" aria-label="Gleis/Bussteig {{ departure.platform }}">{{ departure.platform }}</span>
- {% endif %}
- </li>
- {% endfor %}
- </ul>
- </div>
-</div>
-
-{% include 'footer.html' %}
-
-</body>
-</html>
+ {% if departure.platform %}
+ <span class="platform" aria-label="Gleis/Bussteig {{ departure.platform }}">{{ departure.platform }}</span>
+ {% endif %}
+ </li>
+{% endfor %}
diff --git a/templates/departures_page.html b/templates/departures_page.html
new file mode 100644
index 0000000..52733c4
--- /dev/null
+++ b/templates/departures_page.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html lang="de">
+<head>
+ <title>{{ title }}</title>
+ {% include 'header.html' %}
+ <script src="/static/v1/js/reload.js"></script>
+</head>
+<body>
+
+{% include 'navbar.html' %}
+
+<div class="container">
+ <div class="content">
+ {% if warning %}
+ <div class="content">
+ <div class="warning">
+ <strong>{{ warning["lead"] }}</strong>
+ {{ warning["body"] }}
+ <div class="errcode">{{ warning["code"] }}</div>
+ </div>
+ </div>
+ {% endif %}
+ {% if not departures %}
+ <div class="globalnote">Keine Abfahrten innerhalb der nächsten zwei Stunden</div>
+ {% endif %}
+ <ul class="departures" id="departurelist">
+ {% include 'departure_list.html' %}
+ </ul>
+ </div>
+</div>
+
+{% include 'footer.html' %}
+
+</body>
+</html>