{% extends "events/page.html" %} {% load i18n comments thumbnail %} {% block title %} {% trans 'Event Archive' %} {% if month %}{{ month|date:'F Y' }} {% else %}{% if year %}{{year}}{% endif %}{% endif %} {% endblock %} {% block teaser %}

{% trans 'Event Archive' %} {% if month %}{{ month|date:'F Y' }}{% elif year %}{{year|date:'Y'}}{% endif %}

{% endblock %} {% block redbox %}

Archive

{% endblock %} {% block maincontent %} {% regroup event_list by start|date:'F Y' as month_list %} {% for month in month_list %}

{{ month.grouper }}

{% for event in month.list %} {% get_comment_count for event as comment_count %}
{% trans 'Event Image' %}

{{ event.name }}

{% if event.end %} {% trans "from" %} {{ event.start|time:'H:i' }} {% trans "to" %} {{ event.end|time:'H:i' }} {% else %} {{ event.start|time:'H:i' }} {% endif %}

{{event.description|truncatewords_html:20|safe}}

{% if perms.events.change_event %}

{% endif %}
{% endfor %} {% endfor %} {% endblock %}