{% extends "admin/base.html" %} {% block stylesheets %} {% endblock %} {% block content %}

{{ user.name }}

{% if user.type == 'admin' %} Admin {% endif %} {% if user.verified %} Vérifié {% endif %} {% if user.hidden %} Caché {% endif %} {% if user.banned %} Banni {% endif %}
{% if user.affiliation %}

{{ user.affiliation }}

{% endif %} {% if user.country %}

{{ lookup_country_code(user.country) }}

{% endif %}

{{ user.email }}

{% if user.team_id %}

{{ user.team.name }}

{% endif %} {% for field in user.get_fields(admin=true) %}

{{ field.name }}: {{ field.value }}

{% endfor %}

{% if place %} {{ place }} place {% endif %}

{% if score %} {{ score }} points {% endif %}


{% if user.website %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %} {% block entrypoint %} {{ Assets.js("assets/js/pages/user.js", theme="admin") }} {% endblock %}