mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-22 15:44:19 +00:00
38 lines
1.3 KiB
Django/Jinja
38 lines
1.3 KiB
Django/Jinja
<html>
|
|
<head>
|
|
<title>Elenco enti - Inventario</title>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="{{css}}">
|
|
</head>
|
|
<body>
|
|
{% include 'nav.html.j2' %}
|
|
<div class="container">
|
|
<h1>
|
|
Enti esistenti
|
|
</h1>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Nome ente</th>
|
|
<th>Nome breve</th>
|
|
<th>Ispeziona</th>
|
|
<th>Modifica</th>
|
|
<th>Elimina</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for ente in enti %}
|
|
<tr>
|
|
<td>{{ ente.nomeente }}</td>
|
|
<td>{{ ente.nomebreveente }}</td>
|
|
<td><a href="/serv_list/{{ ente.eid }}"><span class="glyphicon glyphicon-list-alt"></span></a></td>
|
|
<td><a href="/ente_show/{{ ente.eid }}"><span class="glyphicon glyphicon-pencil"></span></a></td>
|
|
<td><a href="/ente_del/{{ ente.eid }}"><span class="glyphicon glyphicon-remove"></span></a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<a class="btn btn-success" href="/ente_add">Aggiungi</a>
|
|
</div>
|
|
</body>
|
|
</html>
|