{% extends "layout.html" %}
{% block title %}Servicios {{service.service_name}}{% endblock %}
{% block body %}
- Inicio
- Ruta {{route.route_id}}
- Viaje hacia {{trip.trip_headsign}}
- Servicio {{service.service_name}}
Tabla de horarios
| Stop Code |
Stop Name |
Stop Time |
{%for start_time in trip_start_times%}
{{start_time.start_time}} |
{%endfor%}
{%for row in time_table%}
{% set stopSeq = row[0].StopSeq%}
{% set stop = row[0].Stop%}
{% set times = row[1:]%}
| {{stop.stop_code}} |
{{stop.stop_name}} |
{{stopSeq.stop_time or ""}} |
{%for start_time in times%}
{{start_time or ""}} |
{%endfor%}
{%endfor%}
Horarios de salida
| Tiempo de inicio |
{%for start_time in trip_start_times%}
| {{start_time.start_time}} |
{%endfor%}
{% endblock%}