{% for departure in departures %}
  • {{ departure.line.name }} {% if departure.direction_area %} {{ departure.direction_area }} {% endif %} {{ departure.direction_stop }} {% if departure.cancelled and departure.plannedWhen %} {{ departure.plannedWhen.strftime("%H:%M") }} {% else %} {% if departure.delay %} ({{ departure.delay }}) {% elif departure.delay is none %} {% endif %} {{ departure.relativeWhen }} {% endif %} {% if departure.cancelled %} {% elif departure.platform %} {{ departure.platform }} {% endif %}
  • {% endfor %}