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 %}
|
2017-09-20 10:01:07 +00:00
|
|
|
<div class="page-header">
|
|
|
|
<h1>
|
|
|
|
Enti
|
|
|
|
<a class="btn btn-success" href="/ente_add">
|
|
|
|
<span class="glyphicon glyphicon-plus"></span> Aggiungi
|
|
|
|
</a>
|
|
|
|
</h1>
|
|
|
|
</div>
|
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-21 07:29:49 +00:00
|
|
|
<td><a href="{{ url_for("page_serv_list_plus", eid=ente.eid) }}"><span class="glyphicon glyphicon-list-alt"></span></a> <a href="{{ url_for("page_ente_show", eid=ente.eid) }}"><span class="glyphicon glyphicon-pencil"></span></a> <a href="{{ url_for("page_ente_del", eid=ente.eid) }}"><span class="glyphicon glyphicon-remove"></span></a></td>
|
2017-09-11 10:47:52 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|