diff options
author | Andrea Lepori <aleporia@gmail.com> | 2023-07-27 12:59:39 +0200 |
---|---|---|
committer | Andrea Lepori <aleporia@gmail.com> | 2023-07-27 12:59:40 +0200 |
commit | b645525ec68296a983945156649524b50b51bd1a (patch) | |
tree | b381d4dcbe0b7bf72a84d5987fb7e66237ca7f96 /client | |
parent | check complete data before doc creation (diff) | |
download | scout-subs-b645525ec68296a983945156649524b50b51bd1a.tar.gz scout-subs-b645525ec68296a983945156649524b50b51bd1a.zip |
verify attachments upload
Diffstat (limited to 'client')
-rw-r--r-- | client/templates/client/index.html | 6 | ||||
-rw-r--r-- | client/views.py | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/client/templates/client/index.html b/client/templates/client/index.html index 8086ed5..8dd3dde 100644 --- a/client/templates/client/index.html +++ b/client/templates/client/index.html @@ -429,7 +429,11 @@ {% if data.3 %} <div class="row"> <div class="col s12"> - <p class="red lighten-1">I dati per questa persona non sono completi. Per poter creare una nuova iscrizione completare tutti i dati.</p> + <p class="red lighten-1">I dati per questa persona non sono completi.<br> + {% if data.4 %} + Uno o piĆ¹ allegati medici (certificato di vacinazione o tessera della cassa malati) non sono stati aggiunti.<br> + {% endif %} + Per poter creare una nuova iscrizione completare tutti i dati.</p> </div> </div> {% else %} diff --git a/client/views.py b/client/views.py index b0029f0..01cb43e 100644 --- a/client/views.py +++ b/client/views.py @@ -112,7 +112,9 @@ def index(request): data = [uc.__dict__[key] for key in required_fields] data += [uc.medic.__dict__[key] for key in required_medic_fields] invalid_flag = ("" in data) or (None in data) or (dt.date(1970, 1, 1) in data) - docs.append([uc, documents, color, invalid_flag]) + no_attachment_flag = (not uc.medic.vac_certificate) or (not uc.medic.health_care_certificate) + invalid_flag = invalid_flag or no_attachment_flag + docs.append([uc, documents, color, invalid_flag, no_attachment_flag]) # show only docs of the user and non archived vac_file = ["/server/media/", "/vac_certificate/doc"] |