{% extends "participant/base_participant.html" %} {% load i18n %} {% load tags %} {% block title %}{{ block.super }} – {{ shown_user }}{% endblock %} {% block content %}
{{ shown_user.email }}
{% 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 %}{{ shown_user.get_gender_display }}
{% endif %} {% if shown_user.get_type_display %}{{ shown_user.get_type_display }}
{% endif %} {% if shown_user.committee %}{{ shown_user.committee }}
{% endif %} {% if shown_user.about_me %}{{ shown_user.about_me }}
{% endif %} {% if perms.participant.can_manage_participant %} {% if shown_user.comment %}{{ shown_user.comment }}
{% endif %}{{ shown_user.last_login }}
{% else %}{% trans "The participant has not logged in yet." %}
{% endif %} {% endif %} {% endblock %}