{% 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 place %} {{ place }} place {% endif %}

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

{% if solves %}
{% else %}

No solves yet

{% endif %}

IP Addresses

{% for addr in addrs %} {% endfor %}
IP Address Last Seen
{{ addr.ip }}
{% endblock %} {% block scripts %} {% endblock %} {% block entrypoint %} {% endblock %}