{%- import "route_symbol.html" as scope -%}
With service available on:
Platforms at this station:
{% for platform in platforms %} {% endfor %}| ROUTE | DESTINATION | BOARDING AREA | TIME | VEHICLE | ||
|---|---|---|---|---|---|---|
| {% call scope::route_symbol(trip.trip.route) %} |
{{ trip.trip.direction.direction_destination }} |
{{ trip.perspective_stop.platform.name }} |
{% if let Tracked(tracked_trip) = trip.trip.tracking_data %}
{{ (trip.perspective_stop.arrival_time + (tracked_trip.delay * 60.0) as i64) | format_time }} {{ ( (trip.perspective_stop.arrival_time + (tracked_trip.delay * 60.0) as i64) - current_time) / 60 }} mins |
{% else %}
{{ trip.perspective_stop.arrival_time | format_time }} {{ (trip.perspective_stop.arrival_time - current_time) / 60 }} mins |
{% endif %}
{% if let Tracked(tracked_trip) = trip.trip.tracking_data %}
{{ tracked_trip.vehicle_ids.join(", ") }} | {% else %}- | {% endif %}