{% extends "layout.html" %} {% block title %}Ruta {{route.route_short_name}}{% endblock %} {% block body %}

Informacion General

Nombre Largo
{{route.route_long_name or ""}}
Nombre Corto
{{route.route_short_name}}
Descripcion
{{route.route_desc}}
Tipo
{{route.route_type}}
Color
{{route.route_color or ""}}
Activa
{{route.active}}

Viajes

{% set keys = ["active", "trip_id", "trip_headsign", "trip_short_name"] %} {%for trip in trips%} {% if trip['active']%} {%else%} {% endif %} {%endfor%}
Activo Nombre Dirigido Hacia Sentido Codigo
{%if trip['active']%} {%else%} {%endif%} {{trip.trip_short_name}} {{trip.trip_headsign}} {% if trip.direction_id == "0"%} Ida {%else%} Vuelta {% endif %} {{trip.card_code}}
{% endblock%}