Abfahrten Stand: {{ generated_at }}
{% if departures %}
{% for d in departures %}
| {{ d.icon }} |
{{ d.line }}
{{ d.destination }}
{{ d.station }}
|
{{ d.time_str }}
{% if d.cancelled %}
entfällt
{% elif d.delay_min and d.delay_min > 0 %}
+{{ d.delay_min }} min
{% endif %}
|
{% if d.messages %}
|
{% for m in d.messages %}{{ m }}{% if not loop.last %} · {% endif %}{% endfor %}
|
{% endif %}
{% endfor %}
{% else %}
Keine Abfahrten verfügbar.
{% endif %}