{% extends "base.html" %}{% load i18n %} {% block title %}{% trans "Monthly View" %}{% endblock %} {% block document %}

{% trans "Monthly View" %}

{{ this_month|date:"F" }} {{ this_month|date:"Y" }}

{% for day in week %} {% endfor %} {% for row in calendar %} {% for day,items in row %} {% if day %}
{{ day }}
{% if items %} {% endif %} {% endif %} {% endfor %}
{% endfor %}
{{ day }}
{% endblock %}