{% extends "base.html" %} {% block title %}Dashboard - Frigate Counter{% endblock %} {% block content %}

{{ today_data|length }}

Cameras Active Today

{{ today_data|sum(attribute='counter_value') }}

Total Counts Today

{{ summary|length }}

Days with Data

{{ cameras|sum(attribute='total_count') }}

All Time Total

Today's Activity ({{ today }})

{% if today_data %} {% for item in today_data %} {% endfor %}
Camera Count Last Updated
{{ item.camera_name }} {{ item.counter_value }} {{ item.timestamp }}
{% else %}

No data for today yet

Counts will appear here once the counter starts receiving events.

{% endif %}

Daily Summary

{% if summary %} {% for day in summary %} {% endfor %}
Date Cameras Total Counts Last Update Action
{{ day.date }} {{ day.camera_count }} {{ day.total_count }} {{ day.last_update }} View Details
{% else %}

No data available

Daily summaries will appear here once data is recorded.

{% endif %}

Camera Summary

{% if cameras %} {% for camera in cameras %} {% endfor %}
Camera Name Days Active Total Counts Last Update Action
{{ camera.camera_name }} {{ camera.day_count }} {{ camera.total_count }} {{ camera.last_update }} View Details
{% else %}

No cameras registered

Camera data will appear here once events are processed.

{% endif %}
{% endblock %}