{% 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 %} {% trans %}User Avatar{% endtrans %} {{ item.username }} {{ item.email }}{% if item.is_admin() %} {% trans %}Admin{% endtrans %}{% elif item.is_protected() %} {% trans %}Team{% endtrans %}{% endif %}{% if item.activation > 0 %} {% trans %}Inactive{% endtrans %}{% endif %} {% endblock%}