mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-22 15:44:19 +00:00
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
{% extends "base.htm" %}
|
|
{% block title %}Lista Servizi{% endblock %}
|
|
{% block content %}
|
|
<h1>
|
|
Servizi esistenti
|
|
</h1>
|
|
<a class="btn btn-success" href="/serv_add"><span class="glyphicon glyphicon-plus"></span> Aggiungi</a>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Nome ente</th>
|
|
<th>Nome servizio</th>
|
|
<th>Locazione</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>{{ servizio.locazione }}</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>
|
|
{% endblock %}
|