{% extends "participant/base_participant.html" %} {% load i18n %} {% load tags %} {% block title %}{{ block.super }} – {{ shown_user }}{% endblock %} {% block content %}

{{ shown_user }}

{{ shown_user.email }}

{% trans "Groups" %}

{% if shown_user.groups.all %} {{ shown_user.groups.all|join:", " }} {% else %} {% trans "The participant is not member of any group." %} {% endif %}

{% if shown_user.get_gender_display %}

{% trans "Gender" %}

{{ shown_user.get_gender_display }}

{% endif %} {% if shown_user.get_type_display %}

{% trans "Type" %}

{{ shown_user.get_type_display }}

{% endif %} {% if shown_user.committee %}

{% trans "Committee" %}

{{ shown_user.committee }}

{% endif %} {% if shown_user.about_me %}

{% trans "About me" %}

{{ shown_user.about_me }}

{% endif %} {% if perms.participant.can_manage_participant %} {% if shown_user.comment %}

{% trans "Comment" %}

{{ shown_user.comment }}

{% endif %}

{% trans "Last Login" %}

{% 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 %}