From 5d784b4f1eb1655b3860a443f06daa6ffde28bdd Mon Sep 17 00:00:00 2001 From: Andrea Lepori Date: Tue, 25 Jul 2023 11:42:51 +0200 Subject: clean up old settings menu --- accounts/templates/accounts/index.html | 84 ---------------------------------- 1 file changed, 84 deletions(-) (limited to 'accounts/templates') diff --git a/accounts/templates/accounts/index.html b/accounts/templates/accounts/index.html index 6de7d1c..921cc81 100644 --- a/accounts/templates/accounts/index.html +++ b/accounts/templates/accounts/index.html @@ -9,24 +9,12 @@ {% block toolbar %} {% endblock%} {% block content %} -
-
-
Continua l'attivazione
-

Usa questo pulsante per tornare alla home e continuare il processo d'attivazione

-
-
- -
@@ -76,89 +64,17 @@ {% endblock %} {% block script %} -function send(id) { - $('#form1').trigger('reinitialize.areYouSure'); - var form = document.getElementById('form1'); - var action = document.getElementById('action'); - action.setAttribute('value', id); - $(':disabled').each(function(e) { - $(this).removeAttr('disabled'); - }) - form.submit(); -} - -function delete_vac() { - var action = document.getElementById('delete_vac'); - var text = document.getElementById('vac_file'); - action.setAttribute('value', 'vac'); - text.setAttribute('value', ''); -} - -function delete_health() { - var action = document.getElementById('delete_health'); - var text = document.getElementById('health_care_file'); - action.setAttribute('value', 'health'); - text.setAttribute('value', ''); -} var elem = $('.tabs') -var options = { - yearRange:100, - format:'dd mmmm yyyy', - i18n: { - months: [ 'gennaio', 'febbraio', 'marzo', 'aprile', 'maggio', 'giugno', 'luglio', 'agosto', 'settembre', 'ottobre', 'novembre', 'dicembre' ], - monthsShort: [ 'gen', 'feb', 'mar', 'apr', 'mag', 'giu', 'lug', 'ago', 'set', 'ott', 'nov', 'dic' ], - weekdays: [ 'domenica', 'lunedì', 'martedì', 'mercoledì', 'giovedì', 'venerdì', 'sabato' ], - weekdaysShort: [ 'dom', 'lun', 'mar', 'mer', 'gio', 'ven', 'sab' ], - weekdaysAbbrev: [ 'D', 'L', 'M', 'M', 'G', 'V', 'S' ], - today: 'Oggi', - clear: 'Cancella', - close: 'Chiudi', - firstDay: 1, - format: 'dddd d mmmm yyyy', - formatSubmit: 'yyyy/mm/dd', - labelMonthNext: 'Mese successivo', - labelMonthPrev: 'Mese precedente', - labelMonthSelect: 'Seleziona un mese', - labelYearSelect: 'Seleziona un anno' - } -} $(document).ready(function() { - $('input#sickness, input#vaccine, input#allergy, input#drugs, input#misc').characterCounter(); - $('.datepicker').datepicker(options); $('.tabs').tabs(); - $('select').formSelect(); - $('.tap-target').tapTarget(); {% for error in errors %} M.toast({html: '{{ error }}', classes: 'orange'}) {% endfor %} {% if ok_message %} M.toast({html: '{{ ok_message }}', classes: 'green'}) {% endif %} - {% if home_tooltip %} - $('.tap-target').tapTarget('open'); - {% endif %} - document.getElementById("vac_certificate").onchange = function() { - for (i=0; i < this.files.length; i++) { - if(this.files[i].size > 1048576*10) { - M.toast({html: 'Il file è troppo grande. Grandezza massima 10MB', classes: 'orange'}); - this.value = ""; - break; - } - } - }; - - document.getElementById("health_care_certificate").onchange = function() { - for (i=0; i < this.files.length; i++) { - if(this.files[i].size > 1048576*10) { - M.toast({html: 'Il file è troppo grande. Grandezza massima 10MB', classes: 'orange'}); - this.value = ""; - break; - } - } - }; - }); /*! -- cgit v1.2.1