{% extends "page.html" %} {% block title %}Month View{% endblock title %} {% block content %}

{{ view_date }}

{% include "pagination_with_views.html" %}

Sunday

Monday

Tuesday

Wednesday

Thursday

Friday

Saturday

{% for week in weeks %} {% set first_week = loop.first %} {% for day in week %} {% set first_day = loop.first %} {% endfor %} {% endfor %}
{% include "pagination.html" %}
{% endblock content %}