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

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

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

{% blocktrans trimmed count count=submission.speakers.count %} Speaker: {% plural %} Speakers: {% endblocktrans %} {{ submission.display_speaker_names }},
{% csrf_token %} {% bootstrap_form form layout='horizontal' %} {% bootstrap_form qform layout='horizontal' %} {% if can_edit %}
{% endif %}
{% if submission.state == "submitted" %}

{% trans "Withdraw submission" %}

{% blocktrans trimmed %} You can click here to withdraw your submission from the selection process. You cannot undo this - if you are just uncertain if you can or should hold your talk, please contact the organizer 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 organizing 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 obj=submission hide_orga="true" %}
{% endblock %}