Files
Hellas-Wawi/wawi/templates/users.html
Bjoern Welker 81a1ed7eef Initial commit
2026-01-30 08:55:14 +01:00

66 lines
1.9 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="card form-card">
<h2>Benutzer verwalten</h2>
{% if error %}
<div class="note">{{ error }}</div>
{% endif %}
{% with messages = get_flashed_messages() %}
{% if messages %}
<div class="note">
{% for m in messages %}
<div>{{ m }}</div>
{% endfor %}
</div>
{% endif %}
{% endwith %}
<form method="post">
<div class="form-grid">
<label>
Benutzername
<input type="text" name="username" required />
</label>
<label>
Passwort
<input type="password" name="password" required />
</label>
</div>
<div class="form-actions">
<button class="btn btn-accent" type="submit">Anlegen</button>
</div>
</form>
</div>
<div class="card" style="margin-top: 14px;">
<table>
<thead>
<tr>
<th>Benutzer</th>
<th>Erstellt</th>
<th class="actions">Aktion</th>
</tr>
</thead>
<tbody>
{% for u in rows %}
<tr>
<td>{{ u.username }}</td>
<td>{{ u.created_at }}</td>
<td class="actions">
<form method="post" action="{{ url_for('bp.reset_user_password', user_id=u.id) }}" onsubmit="return confirm('Passwort für diesen Benutzer wirklich zurücksetzen?');">
<button class="btn small" type="submit">Passwort neu</button>
</form>
<form method="post" action="{{ url_for('bp.delete_user', user_id=u.id) }}" onsubmit="return confirm('Benutzer wirklich löschen?');">
<button class="btn small danger" type="submit">Löschen</button>
</form>
</td>
</tr>
{% else %}
<tr>
<td colspan="3" class="empty">Keine Benutzer.</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}