{% extends "cfp/event/submission_base.html" %} {% load bootstrap4 %} {% load i18n %} {% load orga_edit_link %} {% load rules %} {% block inner %} {% has_perm 'orga.edit_cfp' request.user request.event as can_edit_cfp %} {% if can_edit_cfp %}{% orga_edit_link request.event.cfp.urls.questions %}{% endif %}

{% trans "Tell us more!" %}

{% blocktrans trimmed with step=wizard.steps.step1 steps=wizard.steps.count %} Before we can save your submission, we have some more questions for you. But rest assured, you reached step {{ step }} of {{ steps }} already, we are nearly there! {% endblocktrans %}

{% bootstrap_form_errors wizard.form %} {% if wizard.form.submission_fields %}

{% trans "… about your submission:" %}

{% for field in wizard.form.submission_fields %} {% bootstrap_field field layout='event' %} {% endfor %} {% endif %} {% if wizard.form.speaker_fields %}

{% trans "… about yourself:" %}

{% for field in wizard.form.speaker_fields %} {% bootstrap_field field layout='event' %} {% endfor %} {% endif %} {% endblock %}