2012-07-12 20:07:43 +00:00
|
|
|
{% extends "site_base.html" %}
|
2012-07-12 05:31:41 +00:00
|
|
|
|
|
|
|
{% load bootstrap_tags %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load boxes_tags %}
|
|
|
|
|
|
|
|
{% block page_title %}{% trans "Edit Speaker Profile" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
{% box "speaker-profile" %}
|
|
|
|
|
2012-07-13 04:34:07 +00:00
|
|
|
<form method="POST" action="" enctype="multipart/form-data">
|
2012-07-12 05:31:41 +00:00
|
|
|
{% csrf_token %}
|
|
|
|
<legend>{% trans "Edit Speaker Profile" %}</legend>
|
|
|
|
<fieldset>
|
|
|
|
{{ form|as_bootstrap }}
|
|
|
|
</fieldset>
|
|
|
|
<div class="form-actions">
|
|
|
|
<input class="btn btn-primary" type="submit" value="Save" />
|
|
|
|
<a class="btn" href="{% url dashboard %}">Cancel</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|