{% extends "base.html" %}
{#
The three read-only geometry views §13 names: `/cameras`, `/zones`, `/lines`.
One template rather than three because they are one table with a different column set —
a list of things that belong to a camera, each linking to the canvas where that camera
is drawn. The editing happens in exactly one place, and these are the ways to reach it.
#}
{% block title %}{{ heading }} — Mesopic{% endblock %}
{% block heading %}{{ heading }}{% endblock %}
{% block subtitle %}
Geometry is normalized, so it survives a camera changing resolution. Drawing happens on
the calibration page for each camera.
{% endblock %}
{% block content %}
{% for row in rows %}
-
{{ row.label }}
{{ row.detail }}
{{ row.extent }}
{% else %}
- nothing configured
{% endfor %}
{% endblock %}