{% extends "base.html" %} {% block content %}
{% for month in months %}

{{ month.name }}

{% for week in month.weeks %} {% for cell in week %} {% if cell is none %} {% elif cell.has_footage %} {% else %} {% endif %} {% endfor %} {% endfor %}
MoTuWeThFrSaSu
{{ cell.day_num }} {{ cell.event_count }}e {{ cell.snapshot_count }} {{ cell.day_num }}
{% endfor %}
{% endblock %}