{% extends "orga/submission/base.html" %} {% load compress %} {% load i18n %} {% load rich_text %} {% load rules %} {% load static %} {% block submission_content %} {% has_perm 'submission.edit_speaker_list' request.user submission as can_edit_speakers %} {% if can_edit_speakers %}
{% csrf_token %}
{% endif %} {% for speaker in speakers %}

{{ speaker.name }}

{% if request.event.cfp.request_biography %}

{% translate "Biography" %}:
{{ speaker.biography|rich_text|default:"-" }}

{% endif %}

{% if speaker.other_submissions %}

{% translate "Other proposals by this speaker:" %}
{% endif %}

{% if can_edit_speakers %} {{ phrases.base.edit }} {% translate "Remove" %} {% endif %}
{% endfor %} {% compress js %} {% endcompress %} {% endblock %}