{% extends "base.htm" %}
{% block title %}Elenco utenti inventario • estus{% endblock %}
{% block content %}
    <h1>
        Utenti dell'inventario esistenti
    </h1>
    <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>
        </thead>
        <tr>
            {% for utente in utenti %}
                <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>
            {% endfor %}
        </tr>
    </table>
{% endblock %}