{% extends "user/user-base.html" %} {% block title_ruler %}{% endblock %} {% block title_row %} {% set tab = 'about' %} {% include "user/user-tabs.html" %} {% endblock %} {% block user_content %}
{% if not user.is_unlisted %} {% endif %}
{% if user.user.first_name %}

{{user.user.first_name}}{% if user.user.last_name %} ({{user.user.last_name}}){% endif %}

{% endif %} {% with orgs=user.organizations.all() %} {% if orgs %}

{{ _('From') }} {% for org in orgs -%} {{ org.name }} {%- if not loop.last %}, {% endif %} {% endfor %}

{% endif %} {% endwith %} {% if perms.judge.change_profile %} {% with notes=user.notes %} {% if notes %}

{{ _('Admin Notes') }}: {{ notes }}

{% endif %} {% endwith %} {% endif%} {% if user.about %}

{{ _('About') }}

{% cache 86400 'user_about' user.id MATH_ENGINE %} {{ user.about|markdown('self-description', MATH_ENGINE)|reference|str|safe }} {% endcache %} {% else %} {% if user.user == request.user %} {{ _('You have not shared any information.') }} {% else %} {{ _('This user has not shared any information.') }} {% endif %}
{% endif %} {% if awards %}

{{_('Awards')}}

{% for medal in awards.medals %} {% if medal.ranking == 1 %} {% set medal_url = static('awards/gold-medal.png') %} {% elif medal.ranking == 2%} {% set medal_url = static('awards/silver-medal.png') %} {% else %} {% set medal_url = static('awards/bronze-medal.png') %} {% endif %} {% endfor%}
{% endif %}

{% if rating %}

{{_('Rating History')}}

, #
{% endif %}
{% endblock %} {% block bodyend %} {% if REQUIRE_JAX %} {% include "mathjax-load.html" %} {% endif %} {% if ratings %} {% endif %} {% endblock %}