mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-25 09:04:18 +00:00
Fix user list template
This commit is contained in:
parent
c1c2a6b174
commit
31af1c26fd
1 changed files with 4 additions and 5 deletions
|
@ -14,12 +14,11 @@
|
||||||
<th>Nome utente</th>
|
<th>Nome utente</th>
|
||||||
<th>Elimina</th>
|
<th>Elimina</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
|
||||||
<tr>
|
|
||||||
{% for utente in utenti %}
|
{% for utente in utenti %}
|
||||||
|
<tr>
|
||||||
<td>{{ utente.username }}</td>
|
<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>
|
<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>
|
</table>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in a new issue