2017-02-01 09:37:53 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Elenco servizi - 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>
|
2017-02-01 12:08:56 +00:00
|
|
|
{% include 'nav.html.j2' %}
|
2017-02-01 09:37:53 +00:00
|
|
|
<div class="container">
|
|
|
|
<h1>
|
|
|
|
Servizi esistenti
|
|
|
|
</h1>
|
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Nome ente</th>
|
|
|
|
<th>Nome servizio</th>
|
|
|
|
<th>Ispeziona</th>
|
|
|
|
<th>Modifica</th>
|
|
|
|
<th>Elimina</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for servizio in serv %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ servizio.ente.nomeente }}</td>
|
|
|
|
<td>{{ servizio.nomeservizio }}</td>
|
|
|
|
<td><a href="/imp_list/{{ servizio.sid }}"><span class="glyphicon glyphicon-list-alt"></span></a></td>
|
|
|
|
<td><a href="/serv_show/{{ servizio.sid }}"><span class="glyphicon glyphicon-pencil"></span></a></td>
|
|
|
|
<td><a href="/serv_del/{{ servizio.sid }}"><span class="glyphicon glyphicon-remove"></span></a></td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
<a class="btn btn-success" href="/serv_add">Aggiungi</a>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|