{% extends 'registration/base_client.html' %} {% block title %}Crea iscrizione{% endblock %} {% block breadcrumb %} Crea Iscrizione {% endblock %} {% load app_filter %} {% block content %}
{% csrf_token %} {% if not next %}
navigate_beforeIndietro Avanti navigate_next {% else %}
{% if no_free_places%}

Siamo spiacenti abbiamo esaurito i posti disponibili per questa iscrizione.

{% else %} {% 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}}

{% endif %} {% if custom_data %} {% for key in keys %} {% if key.key_extra|first in '!' %}
{% with arr=key.key_extra|parse_multiple_choice %} {{arr.0}} {% for val in arr.1 %}

{% endfor %} {% endwith %}
{% else %}
{% endif %} {% endfor %} {% endif %} {% endif %} {% endif %}
{% 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') var action = document.getElementById('action') action.setAttribute('value', id); form.submit() } {% endblock %}