Files
fvsjs/templates/accounts.html
2024-04-17 08:34:25 +02:00

27 lines
606 B
HTML

<h2>Nicht bearbeitete Anfragen</h2>
<form action="accounts" method="post">
<table>
<thead>
<tr>
<th>Benutzername</th>
<th>Realname</th>
<th>Email-Adresse</th>
<th>Aktion</th>
</tr>
</thead>
{{inactive_accounts}}
</table>
<h2>Aktive Zugänge</h2>
<table>
<thead>
<tr>
<th>Benutzername</th>
<th>Realname</th>
<th>Email-Adresse</th>
<th>Aktion</th>
</tr>
</thead>
{{active_accounts}}
</table>
</form>