{% extends "registration/registration_base.html" %} {% load i18n static crispy_forms_tags %} {% block title %}Profile{% endblock %} {% block extrahead %} {% endblock %} {% block container %}
{% 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 %}