{% extends 'program_base.html' %} {% block title %} Proposals | {{ block.super }} {% endblock %} {% block program_content %} {% include 'includes/event_proposal_type_select.html' %} {% if speakerproposal_list or eventproposal_list %}

Existing Proposals

People

{% if speakerproposal_list %} {% for speakerproposal in speakerproposal_list %} {% endfor %}
Name Events Status Available Actions
{{ speakerproposal.name }} {% if speakerproposal.eventproposals.all %} {% for ep in speakerproposal.eventproposals.all %} {% endfor %} {% else %} N/A {% endif %} {{ speakerproposal.proposal_status }} Detail {% if not camp.read_only %} Modify Add Event {% if not speakerproposal.eventproposals.all %} Delete {% endif %} {% endif %}
{% else %} Nothing found. {% endif %}


Events

{% if eventproposal_list %} {% for eventproposal in eventproposal_list %} {% endfor %}
Title Type People Track Status Available Actions
{{ eventproposal.title }} {{ eventproposal.event_type }} {% for person in eventproposal.speakers.all %} {% endfor %} {{ eventproposal.track.name }} {{ eventproposal.proposal_status }} Detail {% if not camp.read_only %} Modify {% if eventproposal.get_available_speakerproposals.exists %} Add {{ eventproposal.event_type.host_title }} {% else %} Add {{ eventproposal.event_type.host_title }} {% endif %} Delete {% endif %}
{% else %} Nothing found. {% endif %}

Status Help

pending
Submission is pending review from the Content Team.

approved
Submission was approved and will be part of this years camp.

rejected
Submission was not approved.
{% endif %} {% endblock %}