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

{% trans "Your submission:" %} {{ submission.title }}

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

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

{% trans "Submission type" %}: {{ submission.submission_type }}

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

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

{% endif %} {% if request.event.locales|length > 1 %}

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

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

{% endblocktrans %} {% endif %}

{% csrf_token %} {% if form.availabilities %} {% compress js %} {% endcompress %} {% bootstrap_field form.availabilities layout='inline' %} {% endif %}

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

{% endblock %}