2017-09-11 10:47:52 +00:00
|
|
|
{% extends "base.htm" %}
|
2017-09-13 06:41:07 +00:00
|
|
|
{% block title %}Elenco enti • estus{% endblock %}
|
2017-09-11 10:47:52 +00:00
|
|
|
{% block content %}
|
|
|
|
<h1>
|
|
|
|
Enti esistenti
|
|
|
|
</h1>
|
2017-09-13 06:25:31 +00:00
|
|
|
<a class="btn btn-success" href="/ente_add"><span class="glyphicon glyphicon-plus"></span> Aggiungi</a>
|
2017-09-11 10:47:52 +00:00
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Nome ente</th>
|
|
|
|
<th>Nome breve</th>
|
2017-09-18 06:08:45 +00:00
|
|
|
<th>Azioni</th>
|
2017-09-11 10:47:52 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for ente in enti %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ ente.nomeente }}</td>
|
|
|
|
<td>{{ ente.nomebreveente }}</td>
|
2017-09-18 06:08:45 +00:00
|
|
|
<td><a href="/serv_list/{{ ente.eid }}"><span class="glyphicon glyphicon-list-alt"></span></a> <a href="/ente_show/{{ ente.eid }}"><span class="glyphicon glyphicon-pencil"></span></a> <a href="/ente_del/{{ ente.eid }}"><span class="glyphicon glyphicon-remove"></span></a></td>
|
2017-09-11 10:47:52 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|