{% 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 "Present" %} | {% trans "Title" %} | {% trans "First Name" %} | {% trans "Last 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 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 }} | {% if perms.participant.can_manage_participant %}{{ 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 %} | {% endif %}
{% trans "No participants available." %} |