{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block title %}{% blocktrans %}Yearly View {{ year }}{% endblocktrans %}{% endblock %} {% block document %}

{% blocktrans %}Yearly View {{ year }}{% endblocktrans %}

{% if by_month %} {% for dt,occurrences in by_month %} {% for o in occurrences %} {% if not forloop.last %} {% endif %} {% endfor %} {% endfor %}
{% trans "Month" %} {% trans "Title" %} {% trans "Day" %} {% trans "Start" %} {% trans "End" %}
{{ dt|date:"F" }} {{ o.title }} {{ o.start_time|date:"DATE_FORMAT" }} {{ o.start_time|date:"H:i" }} {{ o.end_time|date:"H:i" }}
{% else %} {% blocktrans %}

No events occurring in {{ year }}

{% endblocktrans %} {% endif %} {% endblock %}