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 >
2017-09-22 09:44:36 +00:00
< td >
< a href = "{{ url_for(" page_imp_list_plus " , sid = servizio.sid) } } " title = "Trova impiegati di questo servizio" > < span class = "glyphicon glyphicon-list-alt" > < / span > < / a >
< a href = "{{ url_for(" page_serv_show " , sid = servizio.sid) } } " title = "Modifica" > < span class = "glyphicon glyphicon-pencil" > < / span > < / a >
< a href = "javascript:void(0)" onclick = "delet("{{ url_for(" page_serv_del " , sid = 12341234) } } & quot ; , { { servizio . sid } } , & quot ; { { servizio } } & quot ; ) ; " title = "Elimina" > < span class = "glyphicon glyphicon-remove" > < / span > < / a >
< / td >
2017-09-18 06:08:45 +00:00
< / 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 %}