{% extends "cfp/event/base.html" %} {% load compress %} {% load event_tags %} {% load filesize %} {% load formset_tags %} {% load i18n %} {% load rules %} {% load static %} {% block title %}{{ submission.title }} :: {% endblock title %} {% block cfp_header %} {% include "cfp/includes/forms_header.html" %} {% compress js %} {% endcompress %} {% endblock cfp_header %} {% block content %} {% has_perm "cfp.add_speakers" request.user submission as can_invite_speakers %} {% include "cfp/includes/user_submission_header.html" %}

{% if submission.state == "accepted" %} {% translate "Confirm your attendance" %} {% elif submission.state == "confirmed" and request.event|get_feature_flag:"use_feedback" %} {% if submission.does_accept_feedback %} {% translate "Audience feedback" %} {% else %} {% translate "Attendees can leave feedback here after your session has taken place." %} {% endif %} {% endif %}

{% if submission.state == "confirmed" %} {% blocktranslate trimmed count count=submission.speakers.count %}Speaker{% plural %}Speakers{% endblocktranslate %}: {% else %} {% blocktranslate trimmed count count=submission.speakers.count %}Submitter{% plural %}Submitters{% endblocktranslate %}: {% endif %} {{ submission.display_speaker_names }}{% if can_invite_speakers %},
{% endif %}
{% include "common/forms/errors.html" %} {% include "common/forms/errors.html" with form=qform %} {% csrf_token %} {{ form }} {{ qform }} {% if can_edit or form.instance.resources.count %} {% include "cfp/includes/submission_resources_form.html" %} {% endif %} {% if can_edit %}
{% if submission.state == "draft" %}
{% else %}
{% endif %}
{% endif %}
{% if submission.review_code and request.event|get_feature_flag:"submission_public_review" %}

{% translate "Share proposal" %}

{% blocktranslate trimmed %} If you need a review from a colleague or a friend here’s a link that you can send out for viewing your proposal: {% endblocktranslate %} {{ submission.urls.review.full }}

{% endif %} {% if submission.state == "submitted" or submission.state == "accepted" %}

{% translate "Withdraw proposal" %}

{% blocktranslate trimmed %} You can withdraw your proposal from the selection process here. You cannot undo this - if you are just uncertain if you can or should hold your session, please contact the organiser instead. {% endblocktranslate %}

{% translate "Withdraw" %}
{% elif submission.state == "draft" %}

{% translate "Discard draft proposal" %}

{% blocktranslate trimmed %} You can discard your draft proposal here. You cannot undo this - if you are just uncertain if you can or should submit your proposal, please contact the organiser instead. {% endblocktranslate %}

{% translate "Discard" %}
{% elif submission.state == "confirmed" %}

{% translate "Cancel proposal" %}

{% blocktranslate trimmed %} As your proposal 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. {% endblocktranslate %}

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