2017-03-12 18:06:03 +00:00
|
|
|
{% extends 'program_base.html' %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Proposals | {{ block.super }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block program_content %}
|
2017-08-01 13:23:11 +00:00
|
|
|
|
2018-05-25 12:27:53 +00:00
|
|
|
{% if camp.call_for_participation_open %}
|
|
|
|
{% include 'includes/event_proposal_type_select.html' %}
|
|
|
|
{% else %}
|
|
|
|
<div class="alert alert-danger">
|
2019-07-31 18:22:11 +00:00
|
|
|
<strong>Note!</strong> This Call for Participation is not open.
|
2018-05-25 12:27:53 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2017-08-01 13:23:11 +00:00
|
|
|
|
2018-05-20 16:16:20 +00:00
|
|
|
{% if speakerproposal_list or eventproposal_list %}
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title"><i class="fas fa-pencil"></i> Existing Proposals</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
2018-05-20 19:42:11 +00:00
|
|
|
<h4>People</h4>
|
|
|
|
{% if speakerproposal_list %}
|
|
|
|
{% include 'includes/speaker_proposal_table.html' with speakerproposals=speakerproposal_list %}
|
|
|
|
{% else %}
|
|
|
|
<i>Nothing found.</i>
|
|
|
|
{% endif %}
|
2017-03-12 18:06:03 +00:00
|
|
|
|
2018-05-20 19:42:11 +00:00
|
|
|
<p><hr></p>
|
2017-03-12 18:06:03 +00:00
|
|
|
|
2018-05-20 19:42:11 +00:00
|
|
|
<h4>Events</h4>
|
|
|
|
{% if eventproposal_list %}
|
|
|
|
{% include 'includes/event_proposal_table.html' with eventproposals=eventproposal_list %}
|
|
|
|
{% else %}
|
|
|
|
<i>Nothing found.</i>
|
|
|
|
{% endif %}
|
2018-05-20 16:16:20 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-03-12 18:06:03 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|