{% extends "misago/userslists/base.html" %} {% load i18n misago_absoluteurl misago_avatars %} {% block title %}{% trans "Top 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 meta-description %} {% block og-title %}{% trans "Top posters" %}{% endblock %} {% block twitter-title %}{% trans "Top posters" %}{% endblock %} {% block og-description %} {% if users_count %} {% blocktrans trimmed with posters=users_count days=tracked_period count counter=users_count %} {{ posters }} top poster from last {{ days }} days. {% plural %} {{ posters }} top 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 og-description %} {% block twitter-description %} {% if users_count %} {% blocktrans trimmed with posters=users_count days=tracked_period count counter=users_count %} {{ posters }} top poster from last {{ days }} days. {% plural %} {{ posters }} top 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 twitter-description %} {% block og-url %}{% absoluteurl request_path %}{% endblock %} {% block twitter-url %}{% absoluteurl request_path %}{% endblock %} {% block content %} {{ block.super }}
{% if users_count %}

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

    {% for ranked in users %} {% url 'misago:user' slug=ranked.slug pk=ranked.pk 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" %}
  • {% endfor %}
{% else %}

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

{% endif %}
{% endblock content %}