{% 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 %}

{% for ranked in users %} {% url USER_PROFILE_URL user_slug=ranked.slug user_id=ranked.id as user_url %} {% endfor %}
{% trans "User" %} {% trans "Rank" %} {% trans "Posts" %} {% trans "Total" %}
{% trans {{ ranked }} #{{ forloop.counter }} {{ ranked.num_posts }} {% if ranked.num_posts > ranked.posts %} {{ ranked.num_posts }} {% else %} {{ ranked.posts }} {% endif %}
{% else %}

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

{% endif %} {% endblock users %}