{% 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 %}
{% include "info_box/site_category_detail.html" %}
{% with ec_class_addon='_main' %} {% include "layout_elements/ec_button_group.html" %} {% endwith %} {% if common_participant_list|length > 0 %}
{{ common_participant_list|length }}

{% trans "Common" %}

{% endif %} {% for pt in participant_type_list_left %}
{{ pt.get_participants|length }}

{{ pt }}

{% endfor %}
{% if latest_participant_list %} {% 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 %}
{% endif %} {% for pt in participant_type_list_right %}
{{ pt.get_participants|length }}

{{ pt }}

{% endfor %}
{% endblock %}