diff --git a/server.py b/server.py index d757e2c..a810bf3 100644 --- a/server.py +++ b/server.py @@ -19,7 +19,7 @@ db = SQLAlchemy(app) sistemioperativi = ["CentOS", "Fedora", "OpenSUSE", "Red Hat", "Ubuntu", "Debian", "Windows Server 2003", "Windows Server 2007", "Windows Server 2010", "Windows Server 2012", "Windows Server 2016", "Windows 98", "Windows ME", "Windows 2000", "Windows XP", "Windows Vista", "Windows 7", "Windows 8", - "Windows 8.1", "Windows 10", "Altro"] + "Windows 8.1", "Windows 10"] old_wd = os.getcwd() @@ -373,7 +373,8 @@ def page_serv_add(): return abort(403) if request.method == 'GET': enti = Ente.query.order_by(Ente.nomeente).all() - return render_template("servizio/show.htm", action="add", enti=enti, pagetype="serv") + servizi = Servizio.query.order_by(Servizio.locazione).all() + return render_template("servizio/show.htm", action="add", enti=enti, servizi=servizi, pagetype="serv") else: nuovoserv = Servizio(request.form['eid'], request.form['nomeservizio'], request.form['locazione']) db.session.add(nuovoserv) diff --git a/templates/dispositivo/show.htm b/templates/dispositivo/show.htm index e1d1a70..9173104 100644 --- a/templates/dispositivo/show.htm +++ b/templates/dispositivo/show.htm @@ -68,7 +68,7 @@
- + {% for opzione in opzioni %} @@ -90,7 +90,7 @@
- + {% for sistema in sistemi %} diff --git a/templates/servizio/list.htm b/templates/servizio/list.htm index e5d0a16..d8e7b9d 100644 --- a/templates/servizio/list.htm +++ b/templates/servizio/list.htm @@ -12,7 +12,7 @@ Nome ente Nome servizio - Locazione + Sede Azioni diff --git a/templates/servizio/show.htm b/templates/servizio/show.htm index a8b4e96..c54cd91 100644 --- a/templates/servizio/show.htm +++ b/templates/servizio/show.htm @@ -2,22 +2,53 @@ {% block title %}Modifica servizio • estus{% endblock %} {% block content %} -
- - - + +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ + + {% for servizio in servizi %} + + {% endfor %} +
+
-
+ + {# +
+ + + + +
+ #} {% endblock %}