From 906de4cb77ab3e54251630e9327a2d740f1b222f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 19 Sep 2017 17:22:11 +0200 Subject: [PATCH] Fix displaying in the imp pages (closes #19) Also, indentation --- templates/impiegato/details.htm | 44 +++++++++++++++++++-------------- templates/impiegato/list.htm | 4 +-- 2 files changed, 27 insertions(+), 21 deletions(-) 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 %}