{% extends "speakers/base.html" %} {% load boxes_tags %} {% block subnav %}

Edit your speaker profile

{% endblock %} {% block body %}

Speakers

{% if accepting_proposals %}

{% box "talk-proposals" %}

To submit a talk:

  1. sign up and log in
  2. create a speaker profile

You will be able to come back and revise your submission until the deadline. Remember that speakers must register and pay to attend the conference.

{% else %}

Talk submissions are now closed and the schedule has been announced.

{% endif %}

Proposals

{% if proposals %} {% for proposal in proposals %} {# #} {% endfor %}
Title Session type Audience level Status Messages Actions
{{ proposal.title }} {{ proposal.get_session_type_display }} {{ proposal.get_audience_level_display }} {% if proposal.cancelled %}Cancelled{% else %}{% if request.user == proposal.speaker.user %}{% if proposal.result.accepted %}Accepted{% else %}Submitted{% endif %}{% else %}Associated{% endif %}{% endif %} {{ proposal.messages.all.count }}{% if not proposal.cancelled %}{% if request.user == proposal.speaker.user %}Edit{% endif %}{% if request.user == proposal.speaker.user %} | Cancel{% else %}Leave{% endif %}{% endif %}{% if not proposal.cancelled %}{% if request.user == proposal.speaker.user and proposal.can_edit %}Edit{% endif %}{% endif %}
{% else %}

No proposals. You can submit one now!

{% endif %} {% endblock %}