{%- import "route_symbol.html" as scope -%}
This website is not run by SEPTA. As such, schedules may not be completely accurate.
{% call scope::route_symbol(route) %}

{{ route.name }}

{% for timetable in timetables %}

{{ timetable.direction.direction | capitalize }} to {{ timetable.direction.direction_destination }}

{% for trip_id in timetable.trip_ids %} {% endfor %} {% for row in timetable.rows %} {% for time in row.times %} {% endfor %} {% endfor %}
Stop{{ trip_id }}
{{ row.stop_name }} {% if let Some(t) = time %} {{ t | format_time }} {% else %} -- {% endif %}
{% endfor %}