{% extends "base.html" %} {% block title %}Пользователи - TGLoader Admin{% endblock %} {% block content %}
| User ID | Username | Имя | Роль | Статус | Создан | Действия |
|---|---|---|---|---|---|---|
{{ user.user_id }} |
@{{ user.username or '-' }} | {{ user.first_name or '-' }} {{ user.last_name or '' }} | {% if user.is_admin %} Администратор {% else %} Пользователь {% endif %} | {% if user.is_blocked %} Заблокирован {% else %} Активен {% endif %} | {{ user.created_at.strftime('%Y-%m-%d %H:%M') if user.created_at else '-' }} |
{% if not user.is_blocked %}
{% else %}
{% endif %}
{% if is_owner %}
{% if user.is_admin %}
{% else %}
{% endif %}
{% endif %}
|
Пользователи не найдены
{% endif %}