{% extends "template.html" %} {% block title %}Railway{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Train Route

{{ train['number'] }}

{{ train['name'] }}

{% for station in route %} {% endfor %}
No Station Arrival Departure Halt Day Distance
{{ station['no'] }} {{ station['station']['name'] }}({{ station['station']['code'] }}) {{ station['scharr'] }} {{ station['schdep'] }} {{ station['halt'] }} {{ station['day'] }} {{ station['distance'] }}
{% endblock %}