bornhack-website/src/program/templates/speaker_form.html

15 lines
480 B
HTML
Raw Normal View History

{% extends 'program_base.html' %}
{% load bootstrap3 %}
{% block program_content %}
2017-03-07 23:24:53 +00:00
<h3>{% if object %}Update{% else %}Create{% endif %} your {{ camp.title }} 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 %}