{% extends "base.html" %} {% load i18n calendarium_tags %} {% load url from future %} {% block main %}

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

{% include "calendarium/partials/category_list.html" %}
{% csrf_token %} {% if request.user.is_staff %} {% trans "Create new event" %} {% endif %}
{% for weekday in weekdays %} {% endfor %} {% for week in month %} {% if week %} {% for day, occurrences, current in week %} {% endfor %} {% endif %} {% endfor %}
{{ weekday }}
{% trans "View" %} {% if day != 0 %} {% if current %}{% endif %}{{ day }}{% if current %}{% endif %} {% for occurrence in occurrences %}

{{ occurrence }}

{% endfor %} {% endif %}
{% render_upcoming_events 5 current_category %} {% endblock %}