{% extends 'program_base.html' %} {% block title %} Proposals | {{ block.super }} {% endblock %} {% block program_content %}

Submitting

To submit a talk or other event for {{ camp.title }} you need to to the following:

  1. First you propose one or more speakers. Most events just have one speaker, but some events might have two or more. Be sure to create everyone before going on to step 2.
  2. Then you propose one or more events. The Propose New Event form will allow you to choose the speaker(s) you proposed.

If you experience problems submitting proposals here please let us know on IRC or by mail. You can also send an email with your proposal and the Content team will take care of creating it in the system.

Your {{ camp.title }} Speaker Proposals

{% if speakerproposal_list %} {% for speakerproposal in speakerproposal_list %} {% endfor %}
Name Status Actions
{{ speakerproposal.name }} {{ speakerproposal.proposal_status }} Details {% if not camp.read_only %} Modify {% if speakerproposal.proposal_status == "pending" or speakerproposal.proposal_status == "approved" %} Submit {% else %} Submit {% endif %} Delete {% endif %}
{% else %}

No speaker proposals found

{% endif %} {% if not camp.read_only and camp.call_for_speakers_open %} Propose New Speaker {% endif %}


Your {{ camp.title }} Event Proposals

{% if eventproposal_list %} {% for eventproposal in eventproposal_list %} {% endfor %}
Title Type Status Actions
{{ eventproposal.title }} {{ eventproposal.event_type }} {{ eventproposal.proposal_status }} Details {% if not camp.read_only %} Modify {% if eventproposal.proposal_status == "pending" %} Submit {% else %} Submit {% endif %} Delete {% endif %}
{% else %}

No event proposals found

{% endif %} {% if not camp.read_only and camp.call_for_speakers_open %} Propose New Event {% endif %} {% endblock %}