{% extends "base.html" %} {% block title_row %}{% endblock %} {% block title_ruler %}{% endblock %} {% block media %} {% endblock %} {% block body %} {% for contest in contests %} {% endfor %} {% for rank, item in page_obj %} {% for point_contest, rank_contest in item.point_contests %} {% endfor %} {% endfor %}
{{_('Rank')}} {{_('Name')}}{{ loop.index }}{{_('Points')}}
{{ rank }}
{{item.username}}
{{item.first_name}}
{{item.last_name}}
{{ point_contest }}
{% if rank_contest %}
(#{{ rank_contest }})
{% endif %}
{{ item.points }}
{% if page_obj and page_obj.num_pages > 1 %}
{% include "list-pages.html" %}
{% endif %} {% endblock %}