{% extends "cfp/event/base.html" %} {% load compress %} {% load i18n %} {% load orga_edit_link %} {% load rich_text %} {% load rules %} {% load static %} {% block title %}{% if submission_title %}{{ submission_title }}{% else %}{% translate "Create proposal" %}{% endif %} :: {{ request.event.name }}{% endblock title %} {% block cfp_header %} {% include "cfp/includes/forms_header.html" %} {% compress js %} {% endcompress %} {% block cfp_submission_header %}{% endblock cfp_submission_header %} {% endblock cfp_header %} {% block content %}
{% for stp in cfp_flow %}
{{ stp.label }}
{% endfor %}
{% translate "Done!" %}
{% block cfp_form %}
{% csrf_token %} {{ wizard.management_form }}

{% block submission_step_title %}{{ title|default:'' }}{% endblock submission_step_title %}

{% has_perm "orga.edit_cfp" request.user request.event as can_edit_cfp %} {% if can_edit_cfp %}{% block orga_edit_link %}{% orga_edit_link request.event.cfp.urls.editor %}{% endblock %}{% endif %}
{% block submission_step_text %}

{{ text|rich_text }}

{% endblock %} {% block inner %} {{ form }} {% endblock inner %} {% block buttons %}
{% if request.GET.draft == "1" %} {% else %} {% endif %}
{% if prev_url %} « {{ phrases.base.back_button }} {% endif %}
{% endblock buttons %}
{% endblock cfp_form %} {% endblock content %}