{% extends '_base.html' %} {% block content %}

calendar

normal view

from to
{% for day in days %}{% if day.weekday == "Monday" %}
---{% endif %}{% if day.comment or day.calendarized_todos %}
{{day.weekday|truncate(2,True,'',0)}} {{day.date}} {{day.comment|e}}{% endif %}{% if day.calendarized_todos%}{% for todo in day.calendarized_todos %}
* {{todo.title_then|e}}{% if todo.comment %} / {{todo.comment|e}}{% endif %}{% endfor %}{% endif %}{% endfor %}
{% endblock %}