{% extends 'base.html' %} {% load i18n %} {% block title %} - {% trans "Events" %}{% endblock %} {% block rss_url %} {% endblock %} {% block content %} {% trans "Events" as ch_title %} {% with ch_icon="icon-time" ch_title=ch_title ch_bc1=ch_title %} {% include "layout_elements/category_header.html" %} {% endwith %}
{% include "info_box/site_category_detail.html" %}
{% trans "Chronology" as sh_title %} {% with sh_title=sh_title only_main="yes" id_addon="1" %} {% include "layout_elements/event_section_header.html" %} {% endwith %} {% with event_list=chronology_list class_addon="1" id_addon="1" %}
{% for event in event_list %} {% include "info_box/event_compact.html" %} {% endfor %}
{% endwith %}
{% trans "Sorted by Topics" as sh_title %} {% with sh_title=sh_title id_addon="2" %} {% include "layout_elements/event_section_header.html" %} {% endwith %}
{% for mpp in main_project_part_list %} {% with event_list=mpp.related_events.all id_addon=mpp.id class_addon="2" %}
{% for event in mpp.get_events %} {% include "info_box/event_compact.html" %} {% endfor %}
{% endwith %} {% endfor %}
{% endblock %}