{% extends 'registration/base_client.html' %} {% block title %}Crea Documento{% endblock %} {% block nav %} Home Crea Documento {% endblock %} {% block content %}
{% csrf_token %} {% if not next %}
navigate_beforeIndietro Avanti navigate_next {% 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 %}
{% endfor %} {% 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 %}