{% extends "base.html" %} {% load i18n %} {% block main %}

{% trans "Occurrences" %}

{% include "calendarium/partials/category_list.html" %}
{% csrf_token %}
{% for date, occurrences, current in week %} {% endfor %} {% for date, occurrences, current in week %} {% endfor %}
{{ date|date:'D m/d' }}
{{ date|date:'D m/d' }} {% for occurrence in occurrences %}

{{ occurrence|truncatechars:22 }}

{% endfor %} {% trans "View calendar day" %}
{% endblock %}