15 lines
458 B
HTML
15 lines
458 B
HTML
|
{% extends 'program_base.html' %}
|
||
|
{% load bootstrap3 %}
|
||
|
|
||
|
{% block program_content %}
|
||
|
<h3>{% if object %}Update{% else %}Create{% endif %} speaker biography</h3>
|
||
|
<form method="POST">
|
||
|
{% csrf_token %}
|
||
|
{% bootstrap_form form %}
|
||
|
{% bootstrap_button "Save as draft" button_type="submit" button_class="btn-primary" %}
|
||
|
{% bootstrap_button "Save and submit" button_type="submit" button_class="btn-primary" %}
|
||
|
</form>
|
||
|
|
||
|
{% endblock program_content %}
|
||
|
|