{% extends "base.html"%} {% load i18n paniktags thumbnail %} {% block title %}{% trans "Agenda" %}{% endblock %} {% block main %}

{% trans "Agenda" %}

{% for event in agenda %}
{% include "includes/tags.html" with object=event nothing_if_empty=True %}

{{ event.title }}

{% if event.subtitle %}

{{ event.subtitle }}

{% endif %}
{{ event.text|safe }}
{% endfor %}
{% endblock %}