mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-22 15:44:19 +00:00
22 lines
641 B
HTML
22 lines
641 B
HTML
|
{% extends "base.htm" %}
|
||
|
{% block content %}
|
||
|
<h1>
|
||
|
Utenti dell'inventario esistenti
|
||
|
</h1>
|
||
|
<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>
|
||
|
<a class="btn btn-success" href="/user_add">Aggiungi</a>
|
||
|
{% endblock %}
|