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

{{ user.name }}

{% if user.type == 'admin' %} admin {% endif %} {% if user.verified %} verified {% endif %} {% if user.hidden %} hidden {% endif %} {% if user.banned %} banned {% endif %}
{% if user.affiliation %}

{{ user.affiliation }}

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

{{ lookup_country_code(user.country) }}

{% endif %}

{{ user.email }}

{% if user.oauth_id %}

Official

{% endif %} {% if user.team_id %}

{{ user.team.name }}

{% endif %} {% if user.bracket_id %}

{{ user.bracket.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 %}