{% extends "participant/base_participant.html" %} {% load i18n %} {% load staticfiles %} {% load tags %} {% block title %}{{ block.super }} – {% trans "Participants" %}{% endblock %} {% block header %} {% if perms.agenda.can_manage_agenda %} {% endif %} {% endblock %} {% block content %}

{% trans "Participants" %}

{% trans "Filter" %}:

{% if users.count == allusers %} {{ users.count }} {% blocktrans count counter=users.count %}participant{% plural %}participants{% endblocktrans %} {% else %} {{ users.count }} {% trans "of" %} {{ allusers }} {% trans "Participants" %} (= {{ percent }} %) {% endif %} {% if perms.participant.can_manage_participant %} {% endif %} {% for user in users %} {% if perms.participant.can_manage_participant %} {% endif %} {% empty %} {% endfor %}
{% trans "First Name" %} {% trans "Last Name" %} {% trans "Structure level" %} {% trans "Type" %} {% trans "Committee" %}{% trans "Comment" %} {% trans "Last Login" %} {% trans "Actions" %}
{{ user.first_name }} {{ user.last_name }} {{ user.structure_level }} {{ user.get_type_display }} {{ user.committee }}{{ user.comment|first_line }} {% if user.last_login > user.date_joined %} {{ user.last_login }} {% endif %} {% if user != request_user %} {% endif %} {% if user != request_user and not user.is_superuser %} {% endif %}
{% trans "No participants available." %}
{% endblock %}