{% extends "sphene/community/admin/base.html" %} {% load i18n %} {% load sph_extras %} {% load sph_pagination %} {% block head %} {{ block.super }} {% endblock %} {% block content %}
{% trans "Filter users" %} {{ search_form.username.label }}: {{ search_form.username }}
{% if is_sphboard %} {% endif %} {% for usr in sphuser_list %} {% if is_sphboard %} {% load sphboard_extras %} {% endif %} {% endfor %} {% if not sphuser_list %} {% endif %}
{% trans "Username" %} {% trans "Full name" %} {% trans "E-mail" %}{% trans "Board posts" %}{% trans "Is active" %} {% trans "Actions" %}
{{ usr.username }} {{ usr.get_full_name }} {{ usr.email }} {% user_posts_count usr %} {{ usr.is_active|yesno }} {% if usr.is_active %}{% trans "Disable" %}{% else %}{% trans "Enable" %}{% endif %}
{% trans "No users to display" %}

{% sph_pagination pages page '' 'page' 1 %}

{% endblock %}