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

26 lines
988 B
HTML

{% extends "base.htm" %}
{% block title %}Elenco utenti inventario • estus{% endblock %}
{% block content %}
<div class="page-header">
<h1>
Utenti dell'inventario
<a class="btn btn-success" href="/user_add"><span class="glyphicon glyphicon-plus"></span> Aggiungi</a>
</h1>
</div>
<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>
<table class="table table-hover">
<thead>
<tr>
<th>Nome utente</th>
<th>Elimina</th>
</tr>
{% 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>
</tr>
{% endfor %}
</table>
{% endblock %}