diff --git a/templates/impiegato/details.htm b/templates/impiegato/details.htm
index 0e2aa91..0d2941d 100644
--- a/templates/impiegato/details.htm
+++ b/templates/impiegato/details.htm
@@ -13,30 +13,35 @@
{{ impiegato.nomeimpiegato }}
-
+
Servizio di appartenenza
{{ impiegato.servizio.ente.nomeente }} - {{ impiegato.servizio.nomeservizio }}
-
-
-
- Username
-
-
- {{ impiegato.username }}
-
-
-
-
- Password
-
-
- {{ impiegato.passwd }}
-
-
+
+ {% if impiegato.username %}
+
+
+ Username
+
+
+ {{ impiegato.username }}
+
+
+ {% endif %}
+ {% if impiegato.passwd %}
+
+
+ Password
+
+
+ {{ impiegato.passwd }}
+
+
+ {% endif %}
+ {% if accessi %}
Dispositivi associati
@@ -46,7 +51,8 @@
{{ accesso.dispositivo }}
{% endfor %}
-
+
+ {% endif %}
Modifica
diff --git a/templates/impiegato/list.htm b/templates/impiegato/list.htm
index 5b16ca7..6adcd84 100644
--- a/templates/impiegato/list.htm
+++ b/templates/impiegato/list.htm
@@ -21,8 +21,8 @@
{{ imp.servizio.ente.nomeente }} |
{{ imp.servizio.nomeservizio }}
| {{ imp.nomeimpiegato }} |
- {{ imp.username }} |
- {{ imp.passwd }} |
+ {% if imp.username %}{{ imp.username }} {% endif %} |
+ {% if imp.passwd %}{{ imp.passwd }} {% endif %} |
|
{% endfor %}