1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2025-02-16 14:13:56 +00:00
estus/templates/ente_list.html.j2
2017-02-01 08:21:18 +01:00

24 lines
588 B
Django/Jinja

<html>
<head>
<title>Visualizza un pesce rosso</title>
<link rel="stylesheet" href="{{css}}">
</head>
<body>
<div class="pepsecret">Ciao pesce</div>
<div class="container">
<h1>
Enti esistenti
</h1>
<table>
{% for ente in enti %}
<tr>
<td>{{ ente.nome }}</td>
<td>{{ ente.nomebreve }}</td>
<td><a href="/ente_show/{{ ente.eid }}">Modifica</a></td>
<td><a href="/ente_del/{{ ente.eid }}">Elimina</a></td>
</tr>
{% endfor %}
</table>
</div>
</body>
</html>