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

{{ user.name }}

{% if user.team_id %}

{{ user.team.name }}

{% endif %} {% if user.oauth_id %}

Official

{% endif %} {% if user.affiliation %}

{{ user.affiliation }}

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

{{ lookup_country_code(user.country) }}

{% endif %} {% for field in user.fields %}

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

{% endfor %}

{% if account.place %} {{ account.place }} place {% endif %}

{% if account %} {{ account.score }} points {% endif %}

{% if user.website %} {% endif %}
{% include "components/errors.html" %} {% set solves = user.solves %} {% set awards = user.awards %} {% if solves or awards %}

Awards

{% for award in awards %}


{{ award.name }}

{{ award.category or ""}}

{{ award.description or ""}}

{{ award.value }}

{% endfor %}

Solves

{% for solve in solves %} {% endfor %}
Challenge Category Value Time
{{ solve.challenge.name }} {{ solve.challenge.category }} {{ solve.challenge.value }}
{% else %}

No solves yet

{% endif %}
{% endblock %} {% block scripts %} {% endblock %} {% block entrypoint %} {% endblock %}