{% extends "base.html" %} {% block title %}User Management{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Пользователи

{% for user in users %}

ID: {{ user.id }}

{{ user.username }}

{% if user.has_access %} Доступ открыт {% else %} Доступ закрыт {% endif %}

{% endfor %}
{% include 'pagination.html' %} {% endblock %}