1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 15:44:19 +00:00
estus/templates/user/list.htm

25 lines
937 B
HTML
Raw Normal View History

{% extends "base.htm" %}
2017-09-13 06:41:07 +00:00
{% block title %}Elenco utenti inventario • estus{% endblock %}
{% block content %}
<h1>
Utenti dell'inventario esistenti
</h1>
2017-09-13 06:41:07 +00:00
<div class="alert alert-info">
<b>Siete al sicuro!</b> Tutte le password degli utenti di questo inventario vengono hashate e saltate con bcrypt!
</div>
<a class="btn btn-success" href="/user_add"><span class="glyphicon glyphicon-plus"></span> Aggiungi</a>
<table class="table table-hover">
<thead>
<tr>
<th>Nome utente</th>
<th>Elimina</th>
</tr>
2017-09-14 09:23:05 +00:00
{% for utente in utenti %}
<tr>
<td>{{ utente.username }}</td>
<td>{% if utenti|length >= 2 and utente.username != user %}<a href="/user_del/{{ utente.uid }}"><span class="glyphicon glyphicon-remove"></span></a>{% endif %}</td>
2017-09-14 09:23:05 +00:00
</tr>
{% endfor %}
</table>
{% endblock %}