First commit of POC version

This commit is contained in:
2026-01-01 21:07:34 +01:00
parent 3ea6e14d0e
commit 7ab655626a
65 changed files with 12372 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block content %}
<h4 class="mb-4">Pending Users</h4>
<ul class="list-group">
{% for user in users %}
<li class="list-group-item d-flex justify-content-between">
{{ user.name }}
<a class="btn btn-sm btn-success" href="/admin/approve/{{ user.id }}">Approve</a>
</li>
{% endfor %}
</ul>
{% endblock %}