{% 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 %} {% include 'includes/speaker_proposal_table.html' with speakerproposals=speakerproposal_list %} {% else %} Nothing found. {% endif %}


Events

{% if eventproposal_list %} {% include 'includes/event_proposal_table.html' with eventproposals=eventproposal_list %} {% else %} Nothing found. {% endif %}
{% endif %} {% endblock %}