{% extends "participant/base_participant.html" %} {% block title %}{{ block.super }} - {%trans "Participants" %}{% endblock %} {% block content %}

{% trans "Participants" %}

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

{{ users|length }} {% trans "Participant" %} {% 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 "Username" %} {%trans "Email" %} {%trans "Last Login" %} {%trans "Actions" %}
{{ user.first_name }} {{ user.last_name }} {{ user.profile.group }} {{ user.profile.get_type_display }} {{ user.profile.committee }}{{ user.username }} {{ user.email }} {% if user.last_login > user.date_joined %} {{ user.last_login }} {% endif %} {% if user.is_active %} {% else %} {% endif %} {% if user.is_superuser %} {% else %} {% endif %}
{%trans "No participants available." %}
{% endblock %}