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

{{ ident}} {% trans 'Here your personal data details' %}

{% trans 'Station name' %}: {{ mystation.name }}

{% trans 'Active' %} {% trans 'Ident' %} {% trans 'Lat' %} {% trans 'Lon' %} {% trans 'Locate' %} {% trans 'Category' %}
{% if mystation.active %} {% else %} {% endif %} {{ mystation.ident }} {{ mystation.lat }} {{ mystation.lon }} {{ mystation.category }}

{% trans 'Display graph' %}

{% for board in mystation.board_set.all %} {% if board.active %} {% for sensor in board.sensor_set.all %}

{{ board.name }}

{% if sensor.active %}

{{ sensor.name }}

Report

...

Graphite »

Sample

...

Graphite »

{% endif %} {% endfor %}
{% endif %} {% endfor %}
{% endblock %}