{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load tags %} {% block title %}{% trans "Participants" %} – {{ block.super }}{% endblock %} {% block header %} {% endblock %} {% block javascript %} {% 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 %} {% else %} PDF {% endif %}

{% if perms.participant.can_manage_participant %} {% endif %} {% for user in users %} {% if perms.participant.can_manage_participant %} {% endif %} {% endfor %}
{% trans "Present" %} {% trans "Title" %} {% trans "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 %} {% endif %} {% else %} {% endif %} {{ user.title }} {% if 'participant_sort_users_by_first_name'|get_config %} {{ user.first_name }} {{ user.last_name }} {% else %} {{ user.last_name }}{% if user.last_name and user.first_name %},{% endif %} {{ user.first_name }} {% endif %} {{ user.structure_level }} {% for group in user.groups.all %} {% if group.pk != 2 %} {% trans group.name %} {% if not forloop.last %}
{% endif %} {% endif %} {% endfor %}
{{ user.committee }} {% if user.comment %} {% endif %} {% if user.last_login > user.date_joined %} {{ user.last_login }} {% endif %} {% if perms.projector.can_manage_projector %} {% endif %} {% if user != request_user %} {% endif %}
{% endblock %}