File diff d3a8b39a7b01 → e6c623a69ca9
pinaxcon/templates/symposion/speakers/speaker_edit.html
Show inline comments
...
 
@@ -7,17 +7,19 @@
 
{% block page_title %}{% trans "Edit Speaker Profile" %}{% endblock %}
 

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

	
 
<div class="l-content-page">
 
  <div class="l-content-page--richtext">
 
    <form method="POST" action="" enctype="multipart/form-data">
 
        {% csrf_token %}
 
        <legend>{% trans "Edit Speaker Profile" %}</legend>
 
        <h2>{% trans "Edit Speaker Profile" %}</h2>
 
        <fieldset>
 
            {{ speaker_form|bootstrap }}
 
          {% include "_form_snippet.html" with form=speaker_form %}
 
        </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>
 
  </div>
 
</div>
 
{% endblock %}