{% extends "site_base.html" %} {% load i18n %} {% load bootstrap_tags %} {% load i18n %} {% block extra_style %} {% endblock extra_style %} {% comment %} Overwriting extra_head_base to remove markedit JS, which causes conflicts with selectable (JQuery UI) {% endcomment %} {% block extra_head_base %} {% block extra_head %}{% endblock %} {% endblock %} {% block body %}

{% trans "Proposal:" %} {{ proposal.title }}

{% trans "Edit proposal" %}

{% trans "Current Speakers" %}

{% for speaker in speakers %} {% if speaker.user %}

{{ speaker.name }} — {{ speaker.email }}

{% else %}

{{ speaker.email }} — {% trans "pending invitation" %}

{% endif %} {% endfor %}

{% trans "Add another speaker" %}

{% csrf_token %}

{% trans "Lookup speaker by email, first, or last name. If a Speaker does not exist for the email provided, an invitation to create an account will be sent to them." %}

{{ add_speaker_form|as_bootstrap }}
{% endblock %} {% block extra_body %} {% endblock %} {% block extra_script %} {{ add_speaker_form.media.js }} {% endblock extra_script %}