{% extends "cfp/event/base.html" %} {% load bootstrap4 %} {% load formset_tags %} {% load i18n %} {% load staticfiles %} {% 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.state == 'accepted' %} {% trans "Confirm your attendance" %} {% endif %}

{% csrf_token %}
{% blocktrans trimmed count count=submission.speakers.count %} Speaker: {% plural %} Speakers: {% endblocktrans %} {{ submission.display_speaker_names }},
{% csrf_token %} {% bootstrap_form form layout='event' %} {% bootstrap_form qform layout='event' %}
{{ formset.management_form }} {% bootstrap_formset_errors formset %}
{% trans "Resources will be publicly visible. Please try to keep your uploads below 16MB." %}
{% for form in formset %}
{{ form.id }} {% bootstrap_field form.DELETE form_group_class="" layout="inline" %}
{% bootstrap_form_errors form %} {% bootstrap_field form.description layout='inline' %} {% bootstrap_field form.resource layout='inline' %}
{% if action != 'view' %}
{% endif %}
{% endfor %}
{% if action != 'view' %}
{% endif %}
{% if can_edit %}
{% endif %}
{% if submission.state == "submitted" %}

{% trans "Withdraw submission" %}

{% blocktrans trimmed %} You can withdraw your submission from the selection process here. You cannot undo this - if you are just uncertain if you can or should hold your talk, please contact the organiser instead. {% endblocktrans %}

{% trans "Withdraw" %}
{% elif submission.state == "accepted" or submission.state == "confirmed" %}

{% trans "Cancel submission" %}

{% blocktrans trimmed %} As your submission has been accepted already, please contact the event's organising team to cancel it. The best way to reach out would be an answer to your acceptance mail. {% endblocktrans %}

{% endif %}
{% include "common/logs.html" with entries=submission.logged_actions hide_orga="true" %}
{% endblock %}