{% extends "admin/base.html" %} {% block title %}Управление пользователями{% endblock %} {% block content %}
ID | Имя | Дата регистрации | Статус | Действия | |
---|---|---|---|---|---|
{{ user.id }} | {{ user.username }} | {{ user.email }} | {{ user.created_at|datetimeformat }} | {% if user.is_admin %} Админ {% else %} Пользователь {% endif %} |
{% if user.id != current_user.id %}
{% endif %}
|