{% extends "misago/userslists/base.html" %} {% load humanize i18n misago_avatars %} {% block meta-description %}{% blocktrans trimmed with days=tracked_period %} List of users that have posted new messages during last {{ days }} days. {% endblocktrans %}{% endblock meta-description %} {% block users %} {% if users_count %}
{% blocktrans trimmed with posters=users_count|intcomma days=tracked_period count counter=users_count %} {{ posters }} user has posted new messages posting during last {{ days }} days. {% plural %} {{ posters }} users posted new messages during last {{ days }} days. {% endblocktrans %}
{% trans "User" %} | {% trans "Rank" %} | {% trans "Posts" %} | {% trans "Total" %} | |
---|---|---|---|---|
|
{{ ranked }} | #{{ forloop.counter }} | {{ ranked.num_posts }} | {% if ranked.num_posts > ranked.posts %} {{ ranked.num_posts }} {% else %} {{ ranked.posts }} {% endif %} |
{% blocktrans trimmed with days=tracked_period %} No users have posted any new messages during last {{ days }} days. {% endblocktrans %}
{% endif %} {% endblock users %}