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

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

{%trans "Reset user filter" %} {% else %}

{% trans 'Stations' %}

{% endif %}

{% trans 'View on the map' %}

{% for station in page_obj %} {% if station.active %} {% endif %} {% empty %}
  • {% trans 'No station yet.' %}
  • {% endfor %}
    Name User Lat Lon {% trans 'Station status' %} {% trans 'Last status update' %} {% trans 'Version' %} Category {% trans 'View on the map' %}
    {{ station.name }} {{ station.user}} {{ station.lat}} {{ station.lon}} {{ station.stationmaintstatus.laststatus}} {{ station.stationmaintstatus.lastupdate}} {{ station.stationmaintstatus.firmwaremajor }}.{{ station.stationmaintstatus.firmwareminor }} {{ station.category}} {{ station.name }}
    {% endblock %}