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

{% trans "Multiple routes found" %}

{% trans "Multiple routes with the same number were found. Please select exactly which route you want from the list below." %}

{% else %}
{% if entity.metadata.ldb %}

{% trans "Live Train Information" %} {% if entity.metadata.ldb.generatedAt %} - {{ entity.metadata.ldb.generatedAt|localize_utc|date:"H:i:s" }}{% endif %}

{% else %}

{% trans "Route Information" %}

{% endif %}
{% if service.error %} {% else %} {% if service.has_timetable %} {% endif %} {% if service.has_realtime %} {% endif %} {% for point in service.calling_points %} {% if point.joining %} {% endif %} {% if point.service_change %} {% endif %} {% ifnotequal point.activity "N" %} {% if service.has_timetable %} {% endif %} {% if service.has_realtime %} {% endif %} {% endifnotequal %} {% if point.splitting %} {% endif %} {% endfor %}
{% trans "Calling Point" %}{% trans "Scheduled" %}{% trans "Expected / Actual" %}

{% blocktrans with point.joining.0.entity.title as location %}This service then merges with a service from {{ location }}{% endblocktrans %}

{% if service.has_timetable %} {% endif %} {% if service.has_realtime %} {% endif %} {% for joining_point in point.joining %} {% if service.has_timetable %} {% endif %} {% if service.has_realtime %} {% endif %} {% endfor %}
{% trans "Calling Point" %}{% trans "Scheduled" %}{% trans "Expected / Actual" %}
{{ joining_point.stop_num }} {% ifequal joining_point.entity.title|slice:"-12:" "Rail Station" %} {{ joining_point.entity.title|slice:":-13" }} {% else %} {{ joining_point.entity.title }} {% endifequal %} {{ joining_point.st }}{{ joining_point.et }}{{ joining_point.at }}
{% blocktrans with point.service_change as service_type %}This service is then continued by {{ service_type }}.{% endblocktrans %}
{{ point.stop_num }} {% ifequal point.entity.title|slice:"-12:" "Rail Station" %} {{ point.entity.title|slice:":-13" }} {% else %} {{ point.entity.title }} {% endifequal %} {% ifequal point.activity "P" %}
{% trans 'This service picks up here only' %} {% endifequal %} {% ifequal point.activity "D" %}
{% trans 'This service does not drop off here' %} {% endifequal %}
{{ point.st }}{{ point.et }}{{ point.at }}

{% blocktrans with point.splitting.destination as destination %}This service then splits to go to {{ destination }}{% endblocktrans %}

{% if service.has_timetable %} {% endif %} {% if service.has_realtime %} {% endif %} {% for splitting_point in point.splitting.list %} {% if service.has_timetable %} {% endif %} {% if service.has_realtime %} {% endif %} {% endfor %}
{% trans "Calling Point" %}{% trans "Scheduled" %}{% trans "Expected / Actual" %}
{{ splitting_point.stop_num }} {% ifequal splitting_point.entity.title|slice:"-12:" "Rail Station" %} {{ splitting_point.entity.title|slice:":-13" }} {% else %} {{ splitting_point.entity.title }} {% endifequal %} {{ splitting_point.st }}{{ splitting_point.et }}{{ point.at }}
{% endif %}
{% if map %}

{% trans "Map" %}

{% render_map map %}
{% endif %} {% if entity.metadata.ldb %}
For more information
Powered by National Rail Enquiries
{% endif %} {% endif %} {% endblock %}