{% extends "admin/base.html" %} {% block title %}Управление пользователями{% endblock %} {% block content %}

Управление пользователями

{% for user in users.items %} {% endfor %}
ID Имя Email Дата регистрации Статус Действия
{{ user.id }} {{ user.username }} {{ user.email }} {{ user.created_at|datetimeformat }} {% if user.is_admin %} Админ {% else %} Пользователь {% endif %}
{% if user.id != current_user.id %} {% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}