{% extends 'dashboard_base.html' %} {% block head %} {{ super() }} {% endblock %} {% set page_title='Station Summary' %} {% block main_content %}

{% with messages = get_flashed_messages(category_filter=['hmac']) %} {% if messages %} {% for message in messages %}

Your device's secret key

To help ensure nobody can fake the results coming from your sensor, you will need this secret key as part of your device's configuration:
Make sure you copy it and save it somewhere safe, you won't be able to get it again!
{% endfor %} {% endif %} {% endwith %} {%- for station in stations %} {% if current_user.id == station.properties.owner_id %} {% endif %} {%- endfor %}
ReferenceNameTotal readingsLast readingOwnerPrivacyDelete
{{ station.properties.stationReference }} {{ station.properties.stationName }} {{ station.properties.count }} {{ station.properties.time }} {{ station.properties.owner }} {{ 'Private' if station.properties.privacy == 'True' else 'Public' }}
{% include 'new_station_form.html' %} {% endblock %}