{%- import "route_symbol.html" as scope -%}

{{ stop.name }}

With service available on:

{% for route in routes %}
{% call scope::route_symbol(route) %}
{% endfor %}
{#{% if let libseptastic::stop::StopType::MultiPlatform(platforms) = stop.platforms %}

Platforms at this station:

{% for platform in platforms %}

{{ platform.name }}

{% endfor %}
{% endif %}#} {% for trip in trips %} {% if trip.is_tracked %} {% if let Tracked(tracked_trip) = trip.trip.tracking_data %} {% else %} {% endif %} {% endfor %}
ROUTE DESTINATION BOARDING AREA TIME VEHICLE
{% call scope::route_symbol(trip.trip.route) %}

{{ trip.trip.direction.direction_destination }}

{{ trip.perspective_stop.platform.name }}

{% else %} {% endif %}

{{ trip.perspective_stop.arrival_time | format_time }}

{{ (trip.perspective_stop.arrival_time - current_time) / 60 }} mins

{{ tracked_trip.vehicle_ids.join(", ") }} -