{% extends "base.html" %} {% load static %} {% load custom_tags_and_filters %} {% block extrahead %} {% endblock %} {% block title %}Monitors for {{ tool.name }}{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}

Monitors for {{ tool.name }}

{% if can_upload and monitors %}
Add a data point
{% csrf_token %}
{% endif %} {% if monitors %} {% for monitor in monitors %} {% endfor %}
Name Last monitor
{{ monitor.name }} {{ monitor.last_read|date:"SHORT_DATETIME_FORMAT"|default:"no data" }} View
{% else %}
No monitors yet for this tool. Monitors are created by site staff in Django administration (Monitors). {% if user.is_superuser and "django.contrib.admin"|app_installed %}

Add monitor in admin {% endif %}
{% endif %}
{% endblock %}