{% extends "layout/basic.html" %} {% import "components/paginator.html" as paginator with context %} {% import "components/nothing.html" as nothing with context %} {% block content %}
{% if not udocs.length %} {{ nothing.render('Sorry, there is no user in this domain.') }} {% else %} {% for udoc in udocs %} {% endfor %}
{{ _('Rank') }} {{ _('Username') }} {{ _('Rating') }}
{{ (page - 1) * 100 + loop.index }} {{ user.render_inline(udoc, badge=false) }} {{ udoc.rating|default(1500)|round(0) }}
{{ paginator.render(page, upcount) }} {% endif %}
{% endblock %}