diff --git a/templates/results.html b/templates/results.html
index 067a1e7..2b39f46 100644
--- a/templates/results.html
+++ b/templates/results.html
@@ -423,9 +423,18 @@
}
- {{ gwr_count }} National Rail service{{ 's' if gwr_count != 1 }}
- ·
- {{ eurostar_count }} Eurostar service{{ 's' if eurostar_count != 1 }}
+ {% if journey_type == 'return' %}
+ {% for section in sections %}
+ {% if section.direction == 'outbound' %}Outbound{% else %}Return{% endif %}:
+ {{ section.gwr_count }} National Rail service{{ 's' if section.gwr_count != 1 }},
+ {{ section.eurostar_count }} Eurostar service{{ 's' if section.eurostar_count != 1 }}
+ {% if not loop.last %} · {% endif %}
+ {% endfor %}
+ {% else %}
+ {{ gwr_count }} National Rail service{{ 's' if gwr_count != 1 }}
+ ·
+ {{ eurostar_count }} Eurostar service{{ 's' if eurostar_count != 1 }}
+ {% endif %}
{% if from_cache %}
· (cached)
{% endif %}