{% extends 'base.html' %} {% load i18n %} {% block title %} - {% trans "Participants" %}{% endblock %} {% block rss_url %} {% endblock %} {% block content %} {% trans "Participants" as ch_title %} {% with ch_icon="icon-group" ch_title=ch_title ch_bc1=ch_title %} {% include "layout_elements/category_header.html" %} {% endwith %}
{% with ib_title="" ib_content=project.desc_participants %} {% include "info_box/generic.html"%} {% endwith %}
{% trans "Current project-responsible Actors" %}

{% with participant_list=project.responsible_participants.all %} {% include "info_box/participants.html" %} {% endwith %}

{% trans "Former project-responsible Actors" %}

{% with participant_list=project.former_responsible_participants.all %} {% include "info_box/participants.html" %} {% endwith %}

{% trans "Administration" as sh_title %} {% with sh_title=sh_title sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %}
{% with participant_list=ad_participant_list %} {% include "info_box/participants.html" %} {% endwith %}
{% trans "Politics / Party / Parliament" as sh_title %} {% with sh_title=sh_title sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %}
{% with participant_list=po_participant_list %} {% include "info_box/participants.html" %} {% endwith %}
{% trans "New Participants" as sh_title %} {% with sh_title=sh_title rss_url="rss/" %} {% include "layout_elements/section_header.html" %} {% endwith %}
{% with pd_with_header="yes" %} {% for participant in latest_participant_list %}
{% include "info_box/participant_detail.html" %}
{% endfor %} {% endwith %}
{% trans "Company" as sh_title %} {% with sh_title=sh_title sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %}
{% with participant_list=co_participant_list %} {% include "info_box/participants.html" %} {% endwith %}
{% trans "Citizens" as sh_title %} {% with sh_title=sh_title sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %}
{% with participant_list=ci_participant_list %} {% include "info_box/participants.html" %} {% endwith %}
{% trans "Miscellaneous" as sh_title %} {% with sh_title=sh_title sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %}
{% with participant_list=se_participant_list %} {% include "info_box/participants.html" %} {% endwith %}
{% endblock %}