{% load i18n %}
{% trans "Submitted by" %}
{{ proposal.speaker }}
{% trans "Target Audience" %}
{{ proposal.get_target_audience_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 "Abstract" %}
    {{ proposal.abstract_html|safe }} 
    {% trans "Private Abstract" %}
    {{ proposal.private_abstract_html|safe }} 
    {% trans "Project" %}
    {{ proposal.project|safe }} 
    {% trans "Project URL" %}
    {{ proposal.project_url|safe }}
    {% trans "Video URL" %}
    {{ proposal.video_url|safe }}
    {% trans "Special Requirements" %}
    {{ proposal.technical_requirements_html|safe }} 
    {% trans "Speaker Bio" %}
    {{ proposal.speaker.biography_html|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 %}
    {% trans "Recording Release" %}
    {{ proposal.recording_release }} 
    {% trans "Materials Release" %}
    {{ proposal.materials_release }}