{% extends "misago/userslists/base.html" %} {% load i18n misago_pagetitle misago_shorthands misago_stringutils %} {% block title %}{% pagetitle rank.name page=paginator.page %} | {{ block.super }}{% endblock %} {% block meta-description %} {{ rank.description|default:"" }} {% endblock %} {% block meta-extra %} {% if paginator.page > 1 %} {% else %} {% endif %} {% if paginator.previous > 1 %} {% elif paginator.previous %} {% endif %} {% if paginator.next %} {% endif %} {% endblock meta-extra %} {% block content %} {{ block.super }}
{% if rank.description %}
{{ rank.description|escape|urlize|linebreaks|safe }}
{% endif %} {% if paginator.count %}
{% for user in users %}
{% include "misago/userslists/usercard.html" with user=user %}
{% endfor %}
{% if paginator.pages > 1 %}
{% endif %}
{% else %}

{% trans "There are no users with this rank at the moment." %}

{% endif %}
{% endblock content %}