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

{% trans "Participants" %}

{% csrf_token %} {%trans "Filter" %}:

{% if users|length == allusers|length %} {{ users|length }} {% blocktrans count counter=users|length %}participant{% plural %}participants{% endblocktrans %} {% else %} {{ users|length }} {% trans "of" %} {{ allusers|length }} {% 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 "Group" %} {%trans "Type" %} {%trans "Committee" %}{%trans "Comment" %} {%trans "Last Login" %} {%trans "Actions" %}
{{ user.first_name }} {{ user.last_name }} {{ user.profile.group }} {{ user.profile.get_type_display }} {{ user.profile.committee }}{{ user.profile.comment }} {% if user.last_login > user.date_joined %} {{ user.last_login }} {% endif %}
{%trans "No participants available." %}
{% endblock %}