1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-21 23:24:18 +00:00

Fix user list template

This commit is contained in:
Steffo 2017-09-14 11:23:05 +02:00
parent c1c2a6b174
commit 31af1c26fd

View file

@ -14,12 +14,11 @@
<th>Nome utente</th>
<th>Elimina</th>
</tr>
</thead>
<tr>
{% for utente in utenti %}
{% 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>
{% endfor %}
</tr>
</tr>
{% endfor %}
</table>
{% endblock %}