project/templates/registration/edit-registration.html
changeset 1 fda1c66b25f9
child 96 178b89a3ca4f
equal deleted inserted replaced
0:9a77edda77b7 1:fda1c66b25f9
       
     1 {% extends "base.html" %}
       
     2 
       
     3 {% block title %}Edit Registration{% endblock %}
       
     4 
       
     5 {% block content %}
       
     6 <h1>Edit Registration</h1>
       
     7 
       
     8 {% include '_errors.html' %}
       
     9 
       
    10 <form action="{% url kiwipycon_edit_registration id %}"
       
    11       method="post">
       
    12     <fieldset>
       
    13         <legend>Edit Registration</legend>
       
    14         <table class="kiwipycon-default">
       
    15             {{ form }}
       
    16         </table>
       
    17         <button class="button left"
       
    18                 type="submit">
       
    19             Save Changes
       
    20         </button>
       
    21     </fieldset>
       
    22 </form>
       
    23 {% endblock content %}
       
    24