{% extends 'core/base.html' %} {% load i18n l10n material_form data_helpers static %} {% block extra_head %} {{ wizard.form.media }} {% endblock extra_head %} {% block no_page_title %}{% endblock no_page_title %} {% block browser_title %}{% trans "Evaluate" %}{% endblock browser_title %} {% block content %}
{% trans "Evaluation for " %} {{ object.registration.person }}
{# Breadcrumbs showing the progress #}
{% if form_data %}
info {% blocktrans %} You have entered the following data. Please check them and go back if you want to change something. If you are finished, please submit the evaluation. {% endblocktrans %}
{% endif %} {% if part.optional %}
info {% blocktrans %} This part of the evaluation is optional. You can, but you don't have to answer the questions on this page. {% endblocktrans %}
{% endif %}
{# Actual form #} {% csrf_token %} {{ wizard.management_form }} {% if wizard.form.forms %} {{ wizard.form.management_form }} {% for form in wizard.form.forms %} {% form form=form %}{% endform %} {% endfor %} {% else %} {% form form=wizard.form %}{% endform %} {% endif %}
{% if part.optional %} {% endif %} {# Preview section #} {% if form_data %} {% for part, read_form in form_data %}
{{ part.name }}
{% for label, value in read_form %} {% endfor %}
{{ label }} {{ value }}
{% endfor %} {% endif %} {% if form_data %}
warning {% blocktrans %} Please be sure the data you entered are correct. You won't be able to change or even view the entered data after you have submitted them as they will be encrypted in the next step. So, if you want to be able to show the data some time in the future, please note them down or make a printout. {% endblocktrans %}
{% endif %}
{% if wizard.steps.prev %} {% endif %} {% if wizard.steps.count|add:"-1" == wizard.steps.index %} {% else %} {% endif %} clear {% trans "Cancel" %}
{% endblock content %}