{% extends "base.html" %}
{% load i18n %}
{% block content %}
{% if invalid %}
{% trans 'Invalid data; retry' %}
{% endif %}
{% if error %}
{% trans 'Error on publish data; retry' %}
{% endif %}
{% trans 'Here your station details' %}
{% trans 'User' %}: {{user}} {% trans 'Station name' %}: {{ mystation.name }}
{% trans 'Reserved information' %} ({% trans 'click over to open' %}):
{% for key, value in reserved.items %}
- {% trans key %}
{{ value }}
{% endfor %}
| {% trans 'Active' %}
| {% trans 'User' %}
| {% trans 'Lat' %}
| {% trans 'Lon' %}
| {% trans 'Locate' %}
| {% trans 'Category' %}
|
|
{% if mystation.active %}
{% else %}
{% endif %}
|
{{ mystation.user }} |
{{ mystation.lat }} |
{{ mystation.lon }} |
|
{{ mystation.category }} |
| {% trans 'Comment' %} |
{% trans 'Date' %} |
{% trans 'Category' %} |
{% trans 'Image' %} |
{% trans 'Operation' %} |
{% for stationimage in mystation.stationimage_set.all %}
{% if mystation.active %}
| {{ stationimage.comment }} |
{{ stationimage.date }} |
{{ stationimage.category }} |
|
|
{% endif %}
{% empty %}
{% trans 'No image yet.' %}
{% endfor %}
{% trans 'upload your station image' %}
{% endblock %}