{% extends "reports/base.html" %} {% load i18n %} {% block content %}

{% trans "User Activity Summary Reports (TOP 10s)" %}

{% trans "Top 10 Most Active Users - Last 30 days" %}

{% with users30days as users %} {% include "reports/user_activity_table.html" %} {% endwith %}

{% trans "Top 10 Most Active Users - Last 60 days" %}

{% with users60days as users %} {% include "reports/user_activity_table.html" %} {% endwith %}

{% trans "Top 10 Most Active Users - Last 90 days" %}

{% with users90days as users %} {% include "reports/user_activity_table.html" %} {% endwith %} {% endblock content %}