{% extends "admin/admin/list.html" %} {% load i18n %} {% load l10n %} {% load url from future %} {% block action_body %} {% if monitor.users_inactive|int > 0 %}

{%- trans count=monitor.users_inactive|int, total=monitor.users_inactive|int|intcomma -%} There is one inactive user. {%- pluralize -%} There are {{ total }} inactive users. {%- endtrans -%}

{% endif %} {{ super() }} {% endblock %} {% block table_head scoped %}   {{ super() }} {% endblock %} {% block table_row scoped %} {{ item.username }} {{ item.email }}{% if item.activation > 0 %} {% trans %}Inactive{% endtrans %}{% endif %} {{ item.join_date|date("DATETIME_FORMAT") }} {% endblock%}