{% extends "rails/base.html" %} {% block title %}Stations{% endblock %} {% block content %} {% if stations %}

Stations

{% endif %} {% for station in stations %}

Id: {{ station.id }} <Code: {{ station.code }} ({{ station.city }}, {{ station.country }})>  Departures - Arrivals

{% empty %} {% if error %}

Error

There was a problem connecting to the API.

{{ error }}

(The above error is shown to the user as an example. For security reasons these errors are normally hidden from the user)

{% else %}

There are no stations available at this time.

{% endif %} {% endfor %} {% endblock %} {% block footer %} {% endblock %}