diff --git a/pinaxcon/templates/symposion/proposals/proposal_detail.html b/pinaxcon/templates/symposion/proposals/proposal_detail.html index d3f01b19841f4db0f0287a77d779c530f2bf6f1f..745737e8cdda3898e65240a50c669c86d3c5e994 100644 --- a/pinaxcon/templates/symposion/proposals/proposal_detail.html +++ b/pinaxcon/templates/symposion/proposals/proposal_detail.html @@ -6,97 +6,89 @@ {% block head_title %}{{ proposal.title }}{% endblock %} + {% block body %} -
- {% 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 %} - {% trans 'Cancelled' } - {% endif %} -
-

#{{ proposal.number }}: {{ proposal.title }} ({{ proposal.speaker }})

- -
- -
-
- {% include "symposion/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|safe }}
- -
-
- {% endfor %} - -

{% trans 'Leave a Message' %}

- -

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

- -
- {% csrf_token %} -
- {{ message_form|bootstrap }} -
-
- -
-
+
+
+ +

{% block page_title %}#{{ proposal.number }}: {{ proposal.title }} ({{ proposal.speaker }}){% endblock %}

+ + +
+ {% include "symposion/proposals/_proposal_fields.html" %} + +
+ {% 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 %} + {% trans 'Cancelled' } + {% endif %} +
+
+ +
+ {% 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 %} +
+ +

{% trans 'Conversation with Reviewers' %}

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

{% trans 'Leave a Message' %}

+ +

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

+ +
+ {% csrf_token %} +
+ {% include "_form_snippet.html" with form=message_form %} +
+
+ +
+
+
+
-
+ {% endblock %} {% block extra_script %}