Initial commit
This commit is contained in:
15
templates/users.html
Normal file
15
templates/users.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends "base.html" %}
|
||||
{% block body_class %}{% endblock %}
|
||||
{% block content %}
|
||||
<h3 class="mb-3">Пользователи</h3>
|
||||
<ul class="list-group mb-3">
|
||||
{% for row in rows %}
|
||||
<li class="list-group-item d-flex flex-column gap-1">
|
||||
<div><strong>{{ row.full_name }}</strong></div>
|
||||
<div>Роль: {{ row.role }}</div>
|
||||
<div>Логин: {{ row.login }}</div>
|
||||
<div>Пароль: {{ row.password }}</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user