{% extends "misago/userslists/base.html" %} {% load i18n misago_avatars %} {% block title %}{% trans "Active posters" %} | {{ block.super }}{% endblock %} {% block meta-description %} {% if users_count %} {% blocktrans trimmed with posters=users_count days=tracked_period count counter=users_count %} {{ posters }} most active poster from last {{ days }} days. {% plural %} {{ posters }} most active posters from last {{ days }} days. {% endblocktrans %} {% else %} {% blocktrans trimmed with days=tracked_period %} No users have posted any new messages during last {{ days }} days. {% endblocktrans %} {% endif %} {% endblock %} {% block content %} {{ block.super }}
{% if users_count %}

{% blocktrans trimmed with posters=users_count days=tracked_period count counter=users_count %} {{ posters }} most active poster from last {{ days }} days. {% plural %} {{ posters }} most active posters from last {{ days }} days. {% endblocktrans %}

    {% for ranked in users %} {% url USER_PROFILE_URL user_slug=ranked.slug user_id=ranked.id as user_url %}
  • {% if ranked.rank.is_tab %} {{ ranked.rank.name }} {% else %} {{ ranked.rank.name }} {% endif %} {% if ranked.title %} {% endif %}
    #{{ forloop.counter }} {% trans "Rank" %}
    {{ ranked.score }} {% trans "Ranked posts" %}
    {{ ranked.posts }} {% trans "Total posts" %}
  • {% endfor %}
{% else %}

{% blocktrans trimmed with days=tracked_period %} No users have posted any new messages during last {{ days }} days. {% endblocktrans %}

{% endif %}
{% endblock content %}