{% extends "cfp/event/base.html" %} {% load bootstrap4 %} {% load compress %} {% load formset_tags %} {% load i18n %} {% load rules %} {% load static %} {% block title %}{% trans "Your submission" %} :: {% endblock %} {% block content %} {% has_perm 'cfp.add_speakers' request.user submission as can_invite_speakers %} {% compress js %} {% endcompress %}
{% trans "Current state of your submission:" %} {% include "cfp/event/fragment_state.html" with state=submission.state %} {% if submission.state == 'accepted' %} {% trans "Confirm your attendance" %} {% elif submission.state == 'confirmed' %} · {% if submission.does_accept_feedback %} {% trans "Audience feedback" %} {% else %} {% trans "Attendees can leave feedback here after your talk has taken place." %} {% endif %} {% endif %}
{% blocktrans trimmed %} If you need a review from a colleague or a friend here's a link that you can send out for viewing your submission: {% endblocktrans %} {{ submission.urls.review.full }}
{% if submission.state == "submitted" or submission.state == "accepted" %}{% 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 %}
{% elif submission.state == "confirmed" %}{% 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 %} {% endblock %}