{% extends 'staff.html' %} {% load bootstrap3 accounts_tags i18n %} {% block participantstab %} class="active"{% endblock %} {% block content %}

{% trans "Participants" %}

{% for participation in participation_list %} {% endfor %}
Username Full name Orga Reviews Conversations
{{ participation.user.username }} {{ participation.user.get_full_name }} {{ participation.is_orga|yesno:"✔,✘" }} {% for topic in participation.topic_set.all %}{{ topic.get_link }}{% if not forloop.last %}, {% endif %}{% endfor %} {% if request.user in participation.conversation.subscribers.all %} {% else %} {% endif %}
{% if request|orga %} {% include "_form.html" %} {% endif %} {% endblock %} {% block css %} {{ block.css }} {{ form.media.css }} {% endblock %} {% block js_end %} {{ block.super }} {{ form.media.js }} {% endblock %}