diff --git a/pinaxcon/templates/symposion/proposals/proposal_detail.html b/pinaxcon/templates/symposion/proposals/proposal_detail.html index 89382ed9..b5827368 100644 --- a/pinaxcon/templates/symposion/proposals/proposal_detail.html +++ b/pinaxcon/templates/symposion/proposals/proposal_detail.html @@ -6,83 +6,78 @@ {% block page_title %}#{{ proposal.number }}: {{ proposal.title }} ({{ proposal.speaker }}){% endblock %} {% block proposals_body_outer %} - -
-
- -
- +
+
+ +
+ -
- {% 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 %} - -
-
+
+ +
+ {% 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 'No supporting documents attached to this proposal.' %}

+ {% trans 'Cancelled' %} {% endif %} - {% trans 'Add Document' %}
-
- -

{% trans 'Conversation with Reviewers' %}

- {% for message in proposal.messages.all %} +
+ +
+ {% 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' %} +
+ +
+

{% trans 'Conversation with Reviewers' %}

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

- {% endfor %} - -

{% trans 'Leave a Message' %}

- -

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

- -
+ {% 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 %}