{% extends "cfp/event/submission_base.html" %} {% load i18n %} {% load rich_text %} {% load bootstrap4 %} {% block inner %}

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

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