{% extends "base.html" %} {% block title %}{{ date }} - Daily Details{% endblock %} {% block content %}

Details for {{ date }}

{{ counts|length }}

Camera Entries

{{ total }}

Total Counts

{% if counts %} {% for item in counts %} {% endfor %}
Camera Name Count Timestamp
{{ item.camera_name }} {{ item.counter_value }} {{ item.timestamp }}
{% else %}

No data for this date

There are no records for {{ date }}.

{% endif %} ← Back to Dashboard
{% endblock %}