{% extends "orga/submission/base.html" %} {% load compress %} {% load i18n %} {% load rich_text %} {% load rules %} {% load static %} {% load thumbnail %} {% block submission_title %}{% translate "Speakers" %} :: {% endblock submission_title %} {% block submission_content %} {% has_perm "submission.edit_speaker_list" request.user submission as can_edit_speakers %} {% has_perm "orga.send_mails" request.user request.event as can_send_mails %} {% if can_edit_speakers %}
{% csrf_token %} {% if form.errors.email %}
{% for error in form.errors.email %} {{ error }} {% if not forloop.last %}
{% endif %} {% endfor %}
{% endif %}
{% endif %} {% for speaker in speakers %}

{{ speaker.user.get_display_name }} {% if speaker.user.avatar %} {% endif %}

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

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

{% endif %}

{% if speaker.other_submissions %}

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

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