2017-03-07 23:00:17 +00:00
|
|
|
{% extends 'program_base.html' %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
|
|
|
|
{% block program_content %}
|
2017-03-12 14:43:41 +00:00
|
|
|
<h3>{% if object %}Update{% else %}Create{% endif %} {{ camp.title }} Speaker Proposal</h3>
|
2017-03-07 23:00:17 +00:00
|
|
|
<form method="POST">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% bootstrap_form form %}
|
|
|
|
{% bootstrap_button "Save as draft" button_type="submit" button_class="btn-primary" %}
|
2017-03-12 14:43:41 +00:00
|
|
|
{% bootstrap_button "Save and submit for approval" button_type="submit" button_class="btn-primary" %}
|
2017-03-07 23:00:17 +00:00
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock program_content %}
|
|
|
|
|