{% extends "cfp/event/base.html" %} {% load bootstrap4 %} {% load compress %} {% load i18n %} {% load static %} {% block title %}{% translate "Your proposal" %} :: {% endblock %} {% block content %}

{% translate "Your proposal:" %} {{ submission.title }}

{% translate "Current state of your proposal:" %} {% include "cfp/event/fragment_state.html" with state=submission.state %}

{% if submission.submission_type and request.event.submission_types.all|length > 1 %}

{% translate "Session type" %}: {{ submission.submission_type }}

{% endif %} {% if submission.track and request.event.tracks.all|length > 1 %}

{% translate "Track" %}: {{ submission.track.name }}

{% endif %} {% if request.event.is_multilingual and request.event.cfp.request_content_locale %}

{% translate "Language" %}: {{ submission.get_content_locale_display }}

{% endif %}
{% blocktranslate trimmed %} Congratulations on your acceptance! {% endblocktranslate %} {% if form.availabilities %} {% blocktranslate trimmed %} Please provide us with your available hours during the event, so that we can schedule your event accordingly: {% endblocktranslate %}

{% endif %}
{% csrf_token %} {% if form.availabilities %} {% compress js %} {% endcompress %} {% include "common/availabilities.html" %} {% bootstrap_field form.availabilities layout='inline' %} {{ form.availabilities.help_text }} {% endif %}

{% blocktranslate trimmed %} By confirming your proposal, you agree that you are able and willing to participate in this event and present the content of this proposal. The proposal data, such as title, abstract, description, and any uploads you provided, can be made publicly available once the proposal is confirmed. {% endblocktranslate %}

{% endblock %}