{% extends "gnotty/base.html" %} {% load url from future %} {% block content %} {% for month in months %} {% if forloop.counter0|divisibleby:3 %}
{% endif %}
{% for week in month.weeks %} {% for day in week %} {% if day.has_messages %} {{ day.date.day }} {% else %} {{ day.date.day }} {% endif %} {% endfor %} {% endfor %}

{{ month.month|date:"N Y" }}

{% if forloop.last or forloop.counter|divisibleby:3 %}
{% endif %} {% empty %}

No messages.

{% endfor %} {% endblock %}