diff options
author | Andrea Lepori <aleporia@gmail.com> | 2023-09-13 12:54:38 +0200 |
---|---|---|
committer | Andrea Lepori <aleporia@gmail.com> | 2023-09-13 12:54:39 +0200 |
commit | 3c4eccb13b7b261758fd6ef709d2a06ea0fb47df (patch) | |
tree | ade70004311698f52c8e42a745b8c20c508123d8 /accounts/templates | |
parent | shorter approve pdf and updated terms (diff) | |
download | scout-subs-3c4eccb13b7b261758fd6ef709d2a06ea0fb47df.tar.gz scout-subs-3c4eccb13b7b261758fd6ef709d2a06ea0fb47df.zip |
remove check for approved user
Diffstat (limited to 'accounts/templates')
-rw-r--r-- | accounts/templates/accounts/user_edit.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accounts/templates/accounts/user_edit.html b/accounts/templates/accounts/user_edit.html index 3c4cada..2c0c8f4 100644 --- a/accounts/templates/accounts/user_edit.html +++ b/accounts/templates/accounts/user_edit.html @@ -37,7 +37,7 @@ <span class="helper-text" data-error="Campo richiesto"></span> </div> <div class="input-field col l4 s12"> - <input name="birth_date" value="{{birth_date}}" id="birth_date" type="text" {{validation_dic.birth_date|safe}} {{midata_disable}}> + <input name="birth_date" value="{{birth_date}}" class="datepicker" id="birth_date" type="text" {{validation_dic.birth_date|safe}} {{midata_disable}}> <label for="birth_date">Data di nascita</label> <span class="helper-text" data-error="Campo richiesto"></span> </div> @@ -216,7 +216,7 @@ <span class="helper-text" data-error="Campo richiesto"></span> </div> <div class="input-field col l4 s12"> - <input value="{{tetanus_date}}" name="tetanus_date" id="tetanus_date" type="text" {{validation_dic.tetanus_date|safe}}> + <input value="{{tetanus_date}}" name="tetanus_date" id="tetanus_date" class="datepicker" type="text" {{validation_dic.tetanus_date|safe}}> <label for="tetanus_date">Ultima vacinazione contro il tetano</label> <span class="helper-text" data-error="Campo richiesto"></span> </div> |