{% include 'header.html' %}
{% include 'navbar.html' %}
{% for stop in stops %}
-
{{ stop['name'] }}
{% if stop["products"]["nationalExpress"] %}
ICE
{% endif %}
{% if stop["products"]["national"] %}
IC
{% endif %}
{% if stop["products"]["regionalExp"] %}
RE
{% endif %}
{% if stop["products"]["regional"] %}
R
{% endif %}
{% if stop["products"]["suburban"] %}
S
{% endif %}
{% if stop["products"]["subway"] %}
U
{% endif %}
{% if stop["products"]["tram"] %}
T
{% endif %}
{% if stop["products"]["bus"] %}
Bus
{% endif %}
{% if stop["products"]["ferry"] %}
Fähre
{% endif %}
{% if stop["products"]["taxi"] %}
AST
{% endif %}
{% endfor %}