{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load tags %} {% block title %}{{ block.super }} – {% trans "Participants" %}{% endblock %} {% block header %} {% endblock %} {% block javascript %} {% if perms.participant.can_manage_participant %} {% endif %} {% endblock %} {% block content %}

{% trans "Participants" %}
{% if perms.participant.can_manage_participant %} {% trans "New" %} {% trans "Groups" %} {% trans 'Import' %} {% endif %} {% if perms.participant.can_see_participant and perms.participant.can_manage_participant %}
{% if user.is_authenticated %} PDF {% else %} {% trans "Login" %} {% endif %}
{% else %} {% if perms.participant.can_see_participant %} PDF {% endif %} {% if perms.participant.can_manage_participant %} PDF {% endif %} {% endif %}

{% if perms.participant.can_manage_participant %} {% endif %} {% for user in users %} {% if perms.participant.can_manage_participant %} {% endif %} {% empty %} {% endfor %}
{% trans "Present" %} {% trans "Title" %} {% trans "First Name" %} {% trans "Last Name" %} {% trans "Structure level" %} {% trans "Group" %} {% trans "Committee" %}{% trans "Comment" %} {% trans "Last Login" %} {% trans "Actions" %}
{% if perms.participant.can_manage_participant %} {% if user != request_user and not user.is_superuser %} {% endif %} {% else %} {% endif %} {{ user.title }} {{ user.first_name }} {{ user.last_name }} {{ user.structure_level }} {% for group in user.groups.all %} {% if group.name != 'Registered' %} {{ group}} {% if not forloop.last %}
{% endif %} {% endif %} {% endfor %}
{{ user.committee }}{{ user.comment|first_line }} {% if user.last_login > user.date_joined %} {{ user.last_login }} {% endif %} {% if perms.projector.can_manage_projector %} {% endif %} {% if user != request_user %} {% endif %}
{% trans "No participants available." %}
{% endblock %}