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

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

{% trans 'Active' %} {% trans 'Ident' %} {% trans 'Lat' %} {% trans 'Lon' %} {% trans 'Category' %} {% trans 'View on the map' %}
{% if object.active %} location icon {% else %} location icon {% endif %} {{ object.ident }} {{ object.lat }} {{ object.lon }} {{ object.category }} {{ object.slug }}

{% trans 'Display graph' %}

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

{% trans 'Board name' %}: {{ board.name }}

{% trans 'Variable' %}: {{ sensor.name }}

{% trans 'Observation' %}

...

Graphite »

{% trans 'Sample' %}

...

Graphite »

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