{% extends "registration/registration_base.html" %} {% load i18n static crispy_forms_tags %} {% block title %}Profile{% endblock %} {% block extrahead %} {% endblock %} {% block container %}

{% trans "Statistics" %}

{% blocktrans with date_joined=user.date_joined trimmed %} You subscribed on {{ date_joined }}, and sent {{ submit_qty }} answers to the correction bot. {% endblocktrans %}

{% blocktrans trimmed %} You resolved {{ done_qty }} exercises, that's {{ done_pct }} of all exercises. {% endblocktrans %}

{% if user.hkis and user.hkis.rank is not None %} {% blocktrans trimmed with rank=user.hkis.rank points=user.hkis.points|floatformat:"0" %} You have {{ points }} points which ranks you {{ rank }} over {{ participants }} participants. {% endblocktrans %} {% else %} {% blocktrans trimmed %} You're not ranked yet. {% endblocktrans %} {% endif %}

Team

{% if not memberships %} {% trans "You're not in a team, but you can join or create one!" %} {% else %} {% endif %}
{% csrf_token %}

Preferred language

{% trans "Personal informations" %}

{% if messages %} {% for message in messages %} {{ message }}
{% endfor %} {% endif %}
{% csrf_token %} {{ form|crispy }} {% url 'auth_password_change' as password_change %}

{% trans "Change your password" %}

{% endblock %}