{% extends "places/base.html" %} {% load molly_utils %}{% load molly_maps %} {% load i18n %} {% block content %}

{{ title }}

{% for stop in timetable %} {% empty %} {% endfor %}
{% trans "Service" %} {% trans "Destination" %} {% trans "Scheduled Time" %}
{{ stop.journey.route.service_id }} {{ stop.journey.destination }} {{ stop.std }}
{% trans 'There are no scheduled departures from this stop today.' %}
{% endblock %}