{% extends 'base.html' %} {% load i18n %} {% block title %} - {% trans "Process" %}{% endblock %} {% block rss_url %} {% endblock %} {% block content %} {% trans "Process" as ch_title %} {% with ch_icon="icon-time" ch_title=ch_title ch_bc1=ch_title %} {% include "layout_elements/category_header.html" %} {% endwith %}
{% with ib_content=project.desc_process %} {% include "info_box/generic.html"%} {% endwith %}
{% trans "Chronology" as sh_title %} {% with sh_title=sh_title %} {% include "layout_elements/section_header.html" %} {% endwith %}
{% with event_list=chronology_list %} {% include "info_box/events.html" %} {% endwith %}
{% trans "New Events" as sh_title %} {% with sh_title=sh_title rss_url="rss/" %} {% include "layout_elements/section_header.html" %} {% endwith %}
{% with ed_with_header="yes" %} {% for event in latest_event_list %}
{% include "info_box/event_detail.html" %}
{% endfor %} {% endwith %}
{% endblock %}