{% extends "user/base-users-table.html" %} {% block after_rank_head %} {% if has_rating %} {{ _('Rating') }} {% endif %} {% endblock %} {% block after_rank %} {% if has_rating %} {% if user.participation_rating %}{{ rating_number(user.participation_rating) }}{% endif %} {% endif %} {% endblock %} {% block user_footer %} {% if user.user.first_name %} {% endif %} {% if user.user.last_name %} {% endif %} {% endblock %} {% block user_data %} {% if user.participation.virtual %} [{{user.participation.virtual}}] {% endif %} {% if can_edit %}
{% csrf_token %} {% if user.participation.is_disqualified %} {% else %} {% endif %}
{% if perms.judge.change_contestparticipation %} {% endif %}
{% endif %} {% endblock %} {% block before_point_head %} {{ _('Fullname') }} {{ _('School') }} {% for problem in problems %} {{- contest.get_label_for_problem(loop.index0) }}
{{ problem.points }}
{% endfor %} {% endblock %} {% block row_extra %} class="{{ 'disqualified' if user.participation.is_disqualified }} {{'highlight' if user.username == request.user.username}}" {% endblock %} {% block before_point %} {% for cell in user.problem_cells %} {{ cell }} {% endfor %} {% endblock %} {% block point %} {{ user.result_cell }} {% endblock %}