{% 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') }} {{ _('RP') }} {{ _('Accept') }} {{ _('Bio') }}
{{ (page - 1) * 100 + loop.index }} {{ user.render_inline(udoc) }} {{ udoc.rp|default(1500)|round(0) }} {{ udoc.nAccept|default(0) }} {{ udoc.bio|default('')|truncate(64, true)|markdownInline|safe }}
{{ paginator.render(page, upcount) }} {% endif %}
{% endblock %}