2017-09-11 10:47:52 +00:00
|
|
|
{% extends "base.htm" %}
|
2017-09-13 06:41:07 +00:00
|
|
|
{% block title %}Elenco servizi • 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>
|
|
|
|
Servizi
|
|
|
|
<a class="btn btn-success" href="/serv_add"><span class="glyphicon glyphicon-plus"></span> Aggiungi</a>
|
|
|
|
</h1>
|
|
|
|
</div>
|
2017-09-18 06:08:45 +00:00
|
|
|
<table class="table table-hover">
|
2017-02-01 09:37:53 +00:00
|
|
|
<thead>
|
2017-09-18 06:08:45 +00:00
|
|
|
<tr>
|
|
|
|
<th>Nome ente</th>
|
|
|
|
<th>Nome servizio</th>
|
2017-09-20 10:31:54 +00:00
|
|
|
<th>Sede</th>
|
2017-09-18 06:08:45 +00:00
|
|
|
<th>Azioni</th>
|
|
|
|
</tr>
|
2017-02-01 09:37:53 +00:00
|
|
|
</thead>
|
|
|
|
{% for servizio in serv %}
|
2017-09-18 06:08:45 +00:00
|
|
|
<tr>
|
|
|
|
<td>{{ servizio.ente.nomeente }}</td>
|
|
|
|
<td>{{ servizio.nomeservizio }}</td>
|
|
|
|
<td>{{ servizio.locazione }}</td>
|
|
|
|
<td><a href="/imp_list/{{ servizio.sid }}"><span class="glyphicon glyphicon-list-alt"></span></a> <a href="/serv_show/{{ servizio.sid }}"><span class="glyphicon glyphicon-pencil"></span></a> <a href="/serv_del/{{ servizio.sid }}"><span class="glyphicon glyphicon-remove"></span></a></td>
|
|
|
|
</tr>
|
2017-02-01 09:37:53 +00:00
|
|
|
{% endfor %}
|
2017-09-18 06:08:45 +00:00
|
|
|
</table>
|
2017-09-11 10:47:52 +00:00
|
|
|
{% endblock %}
|