mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 01:32:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% load getconfig i18n django_tables2 static %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <div class="card bg-light shadow">
 | 
						|
        <div class="card-header text-center">
 | 
						|
            <h4>{{ user }}</h4>
 | 
						|
        </div>
 | 
						|
        <div class="card-body">
 | 
						|
            <dl class="row">
 | 
						|
                <dt class="col-xl-6 text-right">{% trans 'role'|capfirst %}</dt>
 | 
						|
                <dd class="col-xl-6">{{ user.get_role_display }}</dd>
 | 
						|
 | 
						|
                <dt class="col-xl-6 text-right">{% trans 'team'|capfirst %}</dt>
 | 
						|
                <dd class="col-xl-6"><a href="{% url "tournament:team_detail" pk=user.team.pk %}">{{ user.team }}</a></dd>
 | 
						|
 | 
						|
                <dt class="col-xl-6 text-right">{% trans 'birth date'|capfirst %}</dt>
 | 
						|
                <dd class="col-xl-6">{{ user.birth_date }}</dd>
 | 
						|
 | 
						|
                <dt class="col-xl-6 text-right">{% trans 'gender'|capfirst %}</dt>
 | 
						|
                <dd class="col-xl-6">{{ user.get_gender_display }}</dd>
 | 
						|
 | 
						|
                <dt class="col-xl-6 text-right">{% trans 'address'|capfirst %}</dt>
 | 
						|
                <dd class="col-xl-6">{{ user.address }}, {{ user.postal_code }}, {{ user.city }}{% if user.country != "France" %}, {{ user.country }}{% endif %}</dd>
 | 
						|
 | 
						|
                <dt class="col-xl-6 text-right">{% trans 'email'|capfirst %}</dt>
 | 
						|
                <dd class="col-xl-6"><a href="mailto:{{ user.email }}">{{ user.email }}</a></dd>
 | 
						|
 | 
						|
                <dt class="col-xl-6 text-right">{% trans 'phone number'|capfirst %}</dt>
 | 
						|
                <dd class="col-xl-6">{{ user.phone_number }}</dd>
 | 
						|
 | 
						|
                {% if user.role == '3participant' %}
 | 
						|
                    <dt class="col-xl-6 text-right">{% trans 'school'|capfirst %}</dt>
 | 
						|
                    <dd class="col-xl-6">{{ user.school }}</dd>
 | 
						|
 | 
						|
                    <dt class="col-xl-6 text-right">{% trans 'class'|capfirst %}</dt>
 | 
						|
                    <dd class="col-xl-6">{{ user.get_student_class_display }}</dd>
 | 
						|
 | 
						|
                    {% if user.responsible_name %}
 | 
						|
                        <dt class="col-xl-6 text-right">{% trans 'responsible name'|capfirst %}</dt>
 | 
						|
                        <dd class="col-xl-6">{{ user.responsible_name }}</dd>
 | 
						|
                    {% endif %}
 | 
						|
 | 
						|
                    {% if user.responsible_phone %}
 | 
						|
                        <dt class="col-xl-6 text-right">{% trans 'responsible phone'|capfirst %}</dt>
 | 
						|
                        <dd class="col-xl-6">{{ user.responsible_phone }}</dd>
 | 
						|
                    {% endif %}
 | 
						|
 | 
						|
                    {% if user.responsible_email %}
 | 
						|
                        <dt class="col-xl-6 text-right">{% trans 'responsible email'|capfirst %}</dt>
 | 
						|
                        <dd class="col-xl-6"><a href="{{ user.responsible_email }}">{{ user.responsible_email }}</a></dd>
 | 
						|
                    {% endif %}
 | 
						|
                {% endif %}
 | 
						|
 | 
						|
                {% if user.role == '2coach' %}
 | 
						|
                    <dt class="col-xl-6 text-right">{% trans 'description'|capfirst %}</dt>
 | 
						|
                    <dd class="col-xl-6">{{ user.description }}</dd>
 | 
						|
                {% endif %}
 | 
						|
            </dl>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <hr>
 | 
						|
 | 
						|
    <h4>{% trans "Documents" %}</h4>
 | 
						|
 | 
						|
    {# TODO Display documents #}
 | 
						|
{% endblock %}
 |