{% extends "base.html" %} {% block body %}

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

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

{% for u in users %} {% endfor %}
IDЛогинРольСозданАктивен
{{ u.id }}{{ u.login }}{{ u.role }} {{ u.created_at_fmt }} {% if u.is_active %}yes{% else %}no{% endif %} {% if user.role == "admin" and user.id != u.id %}
{% endif %}
{% include "pagination.html" %}
{% if user.role == "admin" %}

Добавить

{% endif %} {% endblock %}