Initial commit

This commit is contained in:
2026-02-23 20:59:05 +03:00
commit 8eb0356823
171 changed files with 67352 additions and 0 deletions

15
templates/users.html Normal file
View 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 %}