{% extends 'dashboard_base.html' %} {% block head %} {{ super() }} {% endblock %} {% set page_title='Station Summary' %} {% block main_content %}
Reference | Name | Total readings | Last reading | Owner | Privacy | Delete |
---|---|---|---|---|---|---|
{{ station.properties.stationReference }} | {{ station.properties.stationName }} | {{ station.properties.count }} | {{ station.properties.time }} | {{ station.properties.owner }} | {{ 'Private' if station.properties.privacy == 'True' else 'Public' }} | {% if current_user.id == station.properties.owner_id %}{% endif %} |