diff --git a/pinaxcon/templates/symposion/proposals/_proposal_fields.html b/pinaxcon/templates/symposion/proposals/_proposal_fields.html new file mode 100644 index 0000000000000000000000000000000000000000..8d652234aa90aebb7b23547e3fa4beea3a94d778 --- /dev/null +++ b/pinaxcon/templates/symposion/proposals/_proposal_fields.html @@ -0,0 +1,60 @@ +{% load i18n %} + +
+
{% trans "Submitted by" %}
+
{{ proposal.speaker }}
+ +
{% trans "Track" %}
+
{{ proposal.track }} 
+ +
{% trans "Audience Level" %}
+
{{ proposal.get_audience_level_display }} 
+ + {% if proposal.additional_speakers.all %} +
{% trans "Additional Speakers" %}
+
+ {% for speaker in proposal.additional_speakers.all %} +
  • + {% if speaker.user %} + {{ speaker.name }} <{{ speaker.email }}> + {% else %} + {{ speaker.email }} ({% trans "Invitation Sent" %}) + {% endif %} +
  • + {% endfor %} +
    + {% endif %} + +
    {% trans "Description" %}
    +
    {{ proposal.description }} 
    + +
    {% trans "Abstract" %}
    +
    {{ proposal.abstract|safe }} 
    + +
    {% trans "Notes" %}
    +
    {{ proposal.additional_notes|safe }} 
    + +
    {% trans "Speaker Bio" %}
    +
    {{ proposal.speaker.biography|safe }} 
    + +
    {% trans "Documents" %}
    +
    + {% if proposal.supporting_documents.exists %} + + {% for document in proposal.supporting_documents.all %} + + + + + {% endfor %} +
    {{ document.description }} +
    + {% csrf_token %} + +
    +
    + {% else %} + No supporting documents attached to this proposal. + {% endif %} +
    +