{% extends "base.html" %} {% load i18n %} {% block content %}
{% if user %}

{{user}} {% trans 'Stations' %}

{% else %}

{% trans 'Stations' %}

{% endif %}

{% trans 'View on the map' %}

{% for station in page_obj %} {% if station.active %} {{ station.stationmaintstatus.lastupdate}} {% endif %} {% empty %}
  • {% trans 'No station yet.' %}
  • {% endfor %}
    Name User {% trans 'Station status' %} {% trans 'Last status update' %} {% trans 'Version' %} {% trans 'status bit' %} {% trans 'status val' %}
    {{ station.name }} {{ station.user}} {{ station.stationmaintstatus.laststatus}} {{ station.stationmaintstatus.firmwaremajor }}.{{ station.stationmaintstatus.firmwareminor }} {% if station.status_bits %}Error{% else %}Ok{% endif %} {% if station.status_vals %}Error{% else %}Ok{% endif %}
    {% endblock %}