{% extends "base.html" %} {% load url from future %} {% block title %}Monthly View{% endblock %} {% block main_content %}

Monthly View

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

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