{% load i18n %}{% load molly_utils %}{% load molly_maps %}{% load compressed %} {{ tour.name }} {% compressed_css 'tours-print' %}

{{ tour.name }}

{% if first_directions %} {% if p_and_r %}

{% blocktrans with p_and_r.start.title as start and p_and_r.closest_stop.title as end %}Park & Ride from {{ start }} to {{ end }}{% endblocktrans %}

{% blocktrans count p_and_r.routes|length as num_routes with p_and_r.routes|join:', ' as route_numbers and p_and_r.start.title as start and p_and_r.origin_stop.entity.title as origin_stop %}At {{ start }} take service {{ route_numbers }} from {{ origin_stop }}.{% plural %}At {{ start }} take any of services {{ route_numbers }} from stop {{ origin_stop }}.{% endblocktrans %}

{% blocktrans with p_and_r.closest_stop.title as end %}When the service reaches {{ end }}, disembark and continue by foot using the directions below.{% endblocktrans %}

{% endif %}

{% blocktrans with directions_end.title as dest_title and directions_start.title as origin_title %}Directions from {{ origin_title }} to {{ dest_title }}{% endblocktrans %}

{% blocktrans with first_directions.total_time|humanise_seconds as time and first_directions.total_distance|humanise_distance as distance %}This route will take {{ time }} and cover {{ distance }}.{% endblocktrans %}

    {% for waypoint in first_directions.waypoints %}
  1. {{ waypoint.instruction }}
    {{ waypoint.additional }} {% if waypoint.map %}{% render_map waypoint.map 'printable' %}{% endif %}
  2. {% endfor %}
{% endif %} {% for stop in stops %} {% if stop.directions_to %}

{% blocktrans with stop.entity.title as dest_title %}Directions to {{ dest_title }}{% endblocktrans %}

{% blocktrans with stop.directions_to.total_time|humanise_seconds as time and stop.directions_to.total_distance|humanise_distance as distance %}This route will take {{ time }} and cover {{ distance }}.{% endblocktrans %}

    {% for waypoint in stop.directions_to.waypoints %}
  1. {{ waypoint.instruction }}
    {{ waypoint.additional }}

    {% render_map waypoint.map 'printable' %}

  2. {% endfor %}
{% endif %}

{{ stop.entity.title }}

{% render_location_map stop.entity.location 'printable' %}

{% if stop.description %}{{ stop.description }}{% endif %} {% endfor %}

{% trans 'Please note that the route information provided should be followed at your own risk.' %}

{% url maps:osm-about as about_link %}

{% blocktrans %}Maps © OpenStreetMap and contributors, CC-BY-SA{% endblocktrans %}