Files @ ef4cea04bc8b
Branch filter:

Location: CopyleftConf/copyleftconf-website/pinaxcon/templates/symposion/speakers/speaker_edit.html

Christopher Neugebauer
Removes DELETEME
{% extends "symposion/speakers/base.html" %}

{% load bootstrap %}
{% load i18n %}
{% load pinax_boxes_tags %}

{% block page_title %}{% trans "Edit Speaker Profile" %}{% endblock %}

{% block body %}
    {% box "speaker-profile" %}

    <form method="POST" action="" enctype="multipart/form-data">
        {% csrf_token %}
        <legend>{% trans "Edit Speaker Profile" %}</legend>
        <fieldset>
            {{ speaker_form|bootstrap }}
        </fieldset>
        <div class="form-actions">
            <input class="btn btn-primary" type="submit" value="Save" />
            <a class="btn btn-default" href="{% url "dashboard" %}">Cancel</a>
        </div>
    </form>
{% endblock %}