{% extends "site_base.html" %} {% load compress %} {% load i18n %} {% load account_tags %} {% load bootstrap_tags %} {% load boxes_tags %} {% block head_title %}{{ proposal.title }}{% endblock %} {% block extra_head %} {% endblock %} {% block body %} {% box kind.slug|add:"-proposal-detail" %} {% if proposal.can_edit %}
{% if not proposal.cancelled %} {% if request.user == proposal.speaker.user %} {% trans "Edit this proposal" %} {% trans "Cancel this proposal" %} {% else %} {% trans "Remove me from this proposal" %} {% endif %} {% else %} Cancelled {% endif %}
{% else %}
{% trans "Proposal Locked" %} {% trans "This proposal is locked as the review period for this section has ended. Edits of proposals after acceptance will not be reflected on the official schedule." %}
{% endif %}

#{{ proposal.number }}: {{ proposal.title }} ({{ proposal.speaker }}, Track: {{ proposal.track }})

{% include "proposals/_proposal_fields.html" %}
{% if request.user == proposal.speaker.user %}

{% trans "Supporting Documents" %}

{% if proposal.supporting_documents.exists %} {% for document in proposal.supporting_documents.all %} {% endfor %}
{{ document.description }}
{% csrf_token %}
{% else %}

{% trans "No supporting documents attached to this proposal." %}

{% endif %} {% trans "Add Document" %}
{% endif %} {% if message_form %}

{% trans "Conversation with Reviewers" %}

{% for message in proposal.messages.all %}
{{ message.message|linebreaksbr|safe }}
{% endfor %}

{% trans "Leave a Message" %}

{% trans "You can leave a message for the reviewers here." %}

{% csrf_token %}
{{ message_form|as_bootstrap }}
{% endif %}
{% endblock %} {% block extra_script %} {% compress js %} {% endcompress %} {% endblock extra_script %}