{% extends "orga/submission/base.html" %} {% load compress %} {% load i18n %} {% load rich_text %} {% load rules %} {% load staticfiles %} {% 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 can_edit_speakers %} {% trans "Remove" %} {% endif %}

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

{% if speaker.other_submissions %}

{% trans "Other submissions by this speaker:" %}
{% endif %}

{% endfor %} {% compress js %} {% endcompress %} {% endblock %}