{% extends "base.html" %} {% load static %} {% load custom_tags_and_filters %} {% block title %}{% if monitor %}Edit monitor{% else %}New monitor{% endif %}{% endblock %} {% block content %}
{% csrf_token %} {% if error %}
{{ error }}
{% endif %}
Shown at the top of the monitor details page. HTML is allowed (e.g. <a href> links). Use a full URL (https://…) or a bare domain (google.com); bare domains are saved with https:// so they do not break on chart/data tabs.

Define the fields shown when adding data and expected in uploaded CSVs. New monitors start with Value and Notes; remove or rename them as needed. For numeric fields, optional control limits can be shown on the chart: 3σ (statistical) uses mean ± 3 standard deviations of data in the selected date range, or fixed min/max lines.

{% for field in data_entry_fields %} {% endfor %}
Field name Type Unit label Control limits Fixed min Fixed max
Cancel
{% endblock %}