{% extends "misago/userslists/base.html" %} {% load i18n misago_avatars misago_batch 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 row in users|batch:3 %}
{% for user in row %}

{{ user.username }}

{% if user.title %} {{ user.title }} {% endif %} {% blocktrans trimmed with joined_on=user.joined_on|date %} Joined on {{ joined_on }} {% endblocktrans %}

  • {% blocktrans trimmed count posts=user.posts %} {{ posts }} post {% plural %} {{ posts }} posts {% endblocktrans %}
  • {% blocktrans trimmed count threads=user.threads %} {{ threads }} thread {% plural %} {{ threads }} threads {% endblocktrans %}
  • {% blocktrans trimmed count followers=user.followers %} {{ followers }} follower {% plural %} {{ followers }} followers {% endblocktrans %}
{% endfor %}
{% endfor %}
{% if paginator.pages > 1 %}
{% endif %}
{% else %}

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

{% endif %}
{% endblock content %}