{% load i18n %} {% load review_tags %}
{% trans "Submitted by" %}
{{ proposal.speaker }}
{% if is_reviewer %}
{% trans "Tags" %}
{{ proposal.get_tags_display }} 
{% endif %}
{% trans "Category" %}
{{ proposal.category }} 
{% if proposal.kind.slug != "lightning-talk" %}
{% trans "Python Level" %}
{{ proposal.get_audience_level_display }} 
{% endif %} {% if proposal.kind.slug == "talk" or proposal.kind.slug == "tutorial" %}
{% trans "Audience" %}
{{ proposal.audience }} 
{% trans "Objectives" %}
{{ proposal.perceived_value }} 
{% endif %} {% if proposal.kind.slug == "talk" %}
{% trans "Duration" %}
{{ proposal.get_duration_display }}
{% endif %} {% if proposal.kind.slug == "tutorial" %}
{% trans "Domain Level" %}
{{ proposal.get_domain_level_display }} 
{% endif %} {% 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 }} 
    {% if proposal.kind.slug != "lightning-talk" %}
    {% trans "Abstract" %}
    {{ proposal.abstract|bleach|safe }} 
    {% endif %} {% if proposal.kind.slug == "tutorial" or proposal.kind.slug == "talk" %}
    {% trans "Outline" %}
    {{ proposal.outline|bleach|safe }} 
    {% trans "More info" %}
    {{ proposal.more_info|bleach|safe }} 
    {% endif %}
    {% trans "Notes" %}
    {{ proposal.additional_notes|bleach|safe }} 
    {% trans "Speaker Bio" %}
    {{ proposal.speaker.biography|bleach|safe }} 
    {% trans "Additional Requirements" %}
    {{ proposal.additional_requirements|bleach|safe }} 
    {% if proposal.kind.slug == "tutorial" %}
    {% trans "Student Handout" %}
    {% if proposal.handout %} {% trans "Download" %} {% else %} {% trans "No handout attached to this proposal." %} {% endif %}
    {% endif %}
    {% trans "Supporting Documents" %}
    {% 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 %}