{% extends "base.html" %} {% block content %}

← New search

Bristol Temple Meads → {{ destination }}

← Prev {{ travel_date_display }} Next →

{{ gwr_count }} GWR service{{ 's' if gwr_count != 1 }}  ·  {{ eurostar_count }} Eurostar service{{ 's' if eurostar_count != 1 }} {% if from_cache %}  ·  (cached) {% endif %}

{% if error %}
Warning: {{ error }}
{% endif %}
{% if trips %}
{% set best_mins = trips | map(attribute='total_minutes') | min %} {% set worst_mins = trips | map(attribute='total_minutes') | max %} {% for trip in trips %} {% if trip.total_minutes == best_mins and trips | length > 1 %} {% set row_bg = 'background:#f0fff4' %} {% elif trip.total_minutes == worst_mins and trips | length > 1 %} {% set row_bg = 'background:#fff5f5' %} {% elif loop.index is odd %} {% set row_bg = 'background:#f7fafc' %} {% else %} {% set row_bg = '' %} {% endif %} {% endfor %}
Bristol Paddington Transfer Depart St Pancras {{ destination }} Total
{{ trip.depart_bristol }} {% if trip.headcode %}
{{ trip.headcode }}{% endif %}
{{ trip.arrive_paddington }} ({{ trip.gwr_duration }}) {{ trip.connection_duration }} {{ trip.depart_st_pancras }} {% if trip.train_number %}
{{ trip.train_number }}{% endif %}
{{ trip.arrive_destination }} (CET) {% if trip.total_minutes == best_mins and trips | length > 1 %} {{ trip.total_duration }} ⚡ {% elif trip.total_minutes == worst_mins and trips | length > 1 %} {{ trip.total_duration }} 🐢 {% else %} {{ trip.total_duration }} {% endif %}

Paddington → St Pancras connection: 60 min minimum, 2h maximum. Eurostar times are from the general timetable and may vary; always check eurostar.com to book.  ·  Paddington arrivals on RTT

{% else %}

No valid journeys found.

{% if gwr_count == 0 and eurostar_count == 0 %} Could not retrieve train data. Check your network connection or try again. {% elif gwr_count == 0 %} No GWR trains found for this date. {% elif eurostar_count == 0 %} No Eurostar services found for {{ destination }} on this date. {% else %} No GWR + Eurostar combination allows an 80-minute connection at Paddington/St Pancras. {% endif %}

{% endif %} {% endblock %}