{% extends "layout_fluid.html" %} {% block title %}Users{% endblock %} {% block h1 %}Users{% endblock %} {% block page_id %}accounts-list{% endblock %} {% block content %}
{% include "administration/sidebar.html" %}

Users

{% for item in users %} {% endfor %}
Username Name E-mail Administrator Active  
{{ item.username }} {{ item.get_full_name }} {{ item.email }} {{ item.is_superuser }} {{ item.is_active }} {% if user.is_superuser or user.id == item.id %} Edit Delete {% endif %}
{% endblock %}