symposion_app/symposion/templates/schedule/_slot_edit.html
2012-09-13 23:17:54 -06:00

14 lines
No EOL
511 B
HTML

{% load i18n bootstrap_tags %}
<form id="slotEditForm" class="modal-form" method="POST" action="{% url schedule_slot_edit slot.pk %}">
<div class="modal-header">
<a class="close" data-dismiss="modal">&times;</a>
<h3>{% trans "Edit Slot" %}</h3>
</div>
<div class="modal-body" style="height:350px">
{% csrf_token %}
{{ form|as_bootstrap }}
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-primary">Save</button>
</div>
</form>