15 lines
384 B
HTML
15 lines
384 B
HTML
{% extends 'program_base.html' %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block program_content %}
|
|
<h3>Confirm Submission</h3>
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<p class="lead">Really submit this speaker proposal for approval?</p>
|
|
{% bootstrap_button "Submit" button_type="submit" button_class="btn-primary" %}
|
|
</form>
|
|
|
|
{% endblock program_content %}
|
|
|