{% 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 "Present" %} | {% trans "Title" %} | {% trans "Name" %} | {% trans "Structure level" %} | {% trans "Group" %} | {% trans "Committee" %} | {% if perms.participant.can_manage_participant %}{% trans "Comment" %} | {% trans "Last Login" %} | {% trans "Actions" %} | {% endif %}
---|---|---|---|---|---|---|---|---|
{% 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 perms.participant.can_manage_participant %}{% 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 %} | {% endif %}