{% comment %} Based on the original file from {% endcomment %} {% load i18n %}
{% trans "Submitted by" %}
{{ proposal.speaker }}
{% trans "Proposal Kind" %}
{{ proposal.kind.name }}
{% 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 %}