{% extends "dbadmin_base.html" %} {%block scripts%} {{super()}} {%endblock%} {% block styles%} {{super()}} {% endblock %} {% block title %}Larigira - Calendar{%endblock%} {% block content %}
{% if not show_all %} Mostra tutti gli eventi {% else %} Nascondi gli eventi troppo frequenti {% endif %}
{% for week, weekdays in weeks|dictsort %}
{% for day in weeks[week] %}

{% for t in days[day]|sort %}
    {% for alarm, actions in days[day][t] %}
  • {{alarm.nick}}
    {% for a in actions %}{{a.nick}}{%endfor%}
  • {% endfor %}
{%endfor %}
{% endfor %}

{%endfor %}
{% endblock content %} {# vim: set ts=2 sw=2 noet: #}