{% extends "base.html" %} {% load i18n %} {% load static %} {% block extracss %} {% endblock %} {% block extrajs %} {% endblock %} {% block content %}
{% trans "Username" %} | {{object.user}} |
---|---|
{% trans "Name" %} | {{object.full_name}} |
{% trans "Email" %} | {{object.email}} |
{% trans "Address" %} | {{object.address}} |
{% trans "Organization" %} | {{object.organization}} |
{% trans "As a superuser, you can edit all the stations. To find the station you are looking for, go to the" %} {% trans "station list." %}
{% else %} {% if user.created_stations.all %}{% trans "Station ID" %} | {% trans "Station Name" %} | {% trans "Water Basin" %} | {% trans "Water Division" %} | {% trans "Political Division" %} | {% trans "Type" %} |
---|---|---|---|---|---|
{{ station.id }} | {{ station.name }} | {{ station.water_basin }} | {{ station.water_division }} | {{ station.political_division.name }} | {% for stype in station.stype.all %}{{ stype.descr }}{% if not forloop.last %}, {% endif %}{% endfor %} |
* {% trans "It seems that you haven't created any stations yet." %}
{% endif %} {% if user.maintaining_stations.all %}{% trans "Station ID" %} | {% trans "Station Name" %} | {% trans "Water Basin" %} | {% trans "Water Division" %} | {% trans "Political Division" %} | {% trans "Type" %} |
---|---|---|---|---|---|
{{ station.id }} | {{ station.name }} | {{ station.water_basin }} | {{ station.water_division }} | {{ station.political_division.name }} | {% for stype in station.stype.all %}{{ stype.descr }}{% if not forloop.last %}, {% endif %}{% endfor %} |
* {% trans "It seems that you don't have permission to edit any station." %}
{% endif %}
{% trans "Add a new station " %}