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

21 lines
688 B
HTML

{% extends "base.htm" %}
{% block content %}
<h1>
Utenti dell'inventario esistenti
</h1>
<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 %}<a href="/user_del/{{ utente.uid }}"><span class="glyphicon glyphicon-remove"></span></a>{% endif %}</td>
</tr>
{% endfor %}
</table>
{% endblock %}