{% extends "base.html" %} {% load i18n %} {% block title %}{{ shown_user }} – {{ block.super }}{% endblock %} {% block content %}

{{ shown_user.clean_name }} {% trans "Back to overview" %} {% if perms.projector.can_manage_projector %} {% endif %} {% if perms.participant.can_manage_participant %} {% endif %}

{% trans "Personal data" %} {{ shown_user.get_gender_display }} {{ shown_user.email }} {{ shown_user.about_me|linebreaks }}
{% trans "Event data" %} {{ shown_user.structure_level }} {{ shown_user.committee }} {% if shown_user.groups.all %} {% for group in shown_user.groups.all %} {% if group.pk != 2 %} {% trans group.name %} {% if not forloop.last %}, {% endif %} {% endif %} {% endfor %} {% else %} {% trans "The participant is not member of any group." %} {% endif %}
{% if perms.participant.can_manage_participant %}
{% trans "Administrative data" %} {{ shown_user.username }} {{ shown_user.comment|linebreaks }} {% if shown_user.last_login > shown_user.date_joined %} {{ shown_user.last_login }} {% else %} {% trans "The participant has not logged in yet." %} {% endif %} {% endif %}
{% endblock %}