{% extends "base.html" %} {% load i18n %} {% block title %}{{ block.super }} – {{ shown_user }}{% 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 %} {{ shown_user.groups.all|join:", " }} {% 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 %}