{% extends 'base.html' %} {% block content %}

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

CRUD-приложение · Лабораторная работа №4

{% if current_user.is_authenticated %}  Создать пользователя {% endif %}
{% if users %}
{% for user in users %} {% endfor %}
# ФИО Роль Действия
{{ loop.index }}
{{ (user.first_name[0] if user.first_name else '?') | upper }}
{{ user.get_full_name() or user.login }}
{% if user.role %} {{ user.role.name }} {% else %} {% endif %}
Просмотр {% if current_user.is_authenticated %} {% endif %}
{% else %}

Пользователи не найдены

{% endif %}
{% if current_user.is_authenticated %} {% endif %} {% endblock %}