diff --git a/pinaxcon/templates/symposion/proposals/_proposal_fields.html b/pinaxcon/templates/symposion/proposals/_proposal_fields.html deleted file mode 100644 index 12ab45f389d9793759f5e1f8b3294ffaac393309..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/symposion/proposals/_proposal_fields.html +++ /dev/null @@ -1,60 +0,0 @@ -{% 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_html|safe }} 
    - -
    {% trans "Notes" %}
    -
    {{ proposal.additional_notes_html|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 %} -
    -