{% extends 'registration/base_client.html' %} {% block title %}Modifica iscrizione{% endblock %} {% block breadcrumb %} Modifica iscrizione {% endblock %} {% load app_filter %} {% block content %}
{% csrf_token %}
{% if personal_data %}

Il documento conterrà le informazioni personali, prego verificare che siano corrette e aggiornate

{% endif %} {% if medical_data %}

Il documento conterrà le informazioni mediche, prego verificare che siano corrette e aggiornate

{% endif %} {% if custom_message %}

{{custom_message_text | linebreaksbr}}

{% endif %} {% if custom_data %} {% for key in keys %} {% if key.key_extra|is_heading %}
{{key.key_extra|parse_heading}}
{% elif key.key_extra|is_multiple_choice %}
{% with arr=key.key_extra|parse_multiple_choice %} {{arr.0}} {% for val in arr.1 %} {% if key.value == val %}

{% else %}

{% endif %} {% endfor %} {% endwith %}
{% elif key.key_extra|is_checkbox %} checkbox {% else %}
{% endif %} {% endfor %} {% endif %}

Attenzione: il documento non sarĂ  valido fino a quando non viene approvato. Selezionare il documento dalla pagina principale per approvarlo.

{% endblock %} {% block script %} $(document).ready(function(){ $('select').formSelect(); {% if error %} M.toast({html: '{{ error_text}}', classes: 'orange'}) {% endif %} }); function send(id) { var form = document.getElementById('form') form.submit() } {% endblock %}