{% extends "places/base.html" %}{% load molly_maps %}{% load molly_utils %} {% load i18n %} {% block extrahead %} {% if entity.metadata.meta_refresh %} {% if not use_javascript %} {% endif %} {% endif %} {% endblock %} {% block content %} {% include "places/metadata/ldb.html" %} {% ifequal entity.primary_type.slug "travel-alert" %}

{% trans "Travel Alert" %}

{{ entity.title }}
{% endifequal %}
{% if not entity.metadata.real_time_information %}

{% trans "Map" %}

{% else %} {% if entity.identifiers.naptan %}

{% blocktrans with entity.identifiers.naptan as stop_id %}Real-time information from stop {{ stop_id }}{% endblocktrans %} - {% now "H:i:s" %}

{% else %}

{% trans "Real-time information" %} - {% now "H:i:s" %}

{% endif %} {% endif %}
{% include "places/metadata/real_time_information.html" %} {% if entity.location %}
{% render_location_map entity.location %}
{% else %}
{% blocktrans with entity.primary_type.verbose_name as type_name %}We do not yet have a location for this {{ type_name }}.{% endblocktrans %}
{% endif %}
{% block metadata %} {% include "places/metadata/osm.html" %} {% include "places/metadata/park_and_ride.html" %} {% endblock %} {% for associated_type in associations %}

{{ associated_type.type }}

{% endfor %} {% endblock %}