Files

13 lines
344 B
HTML
Raw Permalink Normal View History

2026-01-01 21:07:34 +01:00
{% 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 %}