{% extends "base.html" %} {% load getconfig i18n django_tables2 static %} {% block content %}

{{ user }}

{% trans 'role'|capfirst %}
{{ tfjmuser.get_role_display }}
{% if tfjmuser.team %}
{% trans 'team'|capfirst %}
{{ tfjmuser.team }}
{% endif %} {% if tfjmuser.birth_date %}
{% trans 'birth date'|capfirst %}
{{ tfjmuser.birth_date }}
{% endif %} {% if tfjmuser.participates %}
{% trans 'gender'|capfirst %}
{{ tfjmuser.get_gender_display }}
{% endif %} {% if tfjmuser.address %}
{% trans 'address'|capfirst %}
{{ tfjmuser.address }}, {{ tfjmuser.postal_code }}, {{ tfjmuser.city }}{% if tfjmuser.country != "France" %}, {{ tfjmuser.country }}{% endif %}
{% endif %}
{% trans 'email'|capfirst %}
{{ tfjmuser.email }}
{% if tfjmuser.phone_number %}
{% trans 'phone number'|capfirst %}
{{ tfjmuser.phone_number }}
{% endif %} {% if tfjmuser.role == '3participant' %}
{% trans 'school'|capfirst %}
{{ tfjmuser.school }}
{% trans 'class'|capfirst %}
{{ tfjmuser.get_student_class_display }}
{% if tfjmuser.responsible_name %}
{% trans 'responsible name'|capfirst %}
{{ tfjmuser.responsible_name }}
{% endif %} {% if tfjmuser.responsible_phone %}
{% trans 'responsible phone'|capfirst %}
{{ tfjmuser.responsible_phone }}
{% endif %} {% if tfjmuser.responsible_email %}
{% trans 'responsible email'|capfirst %}
{{ tfjmuser.responsible_email }}
{% endif %} {% endif %} {% if tfjmuser.role != '3participant' %}
{% trans 'description'|capfirst %}
{{ tfjmuser.description|default_if_none:"" }}
{% endif %}

{% trans "Documents" %}

{# TODO Display documents #} {% if request.user.is_superuser %}
{% csrf_token %}
{% endif %} {% endblock %}