project/templates/registration/edit-registration.html
changeset 133 c5de36c4573e
parent 123 d4799b7159e4
child 233 394576ff8a2f
equal deleted inserted replaced
132:88932f326d96 133:c5de36c4573e
     1 {% extends "base.html" %}
     1 {% extends "registration/submit-registration.html" %}
     2 
     2 
     3 {% block title %}Edit Registration{% endblock %}
     3 {% block title %}Edit Registration{% endblock %}
     4 
     4 
     5 {% block content %}
     5 {% block formheading %}
     6 <h1>Edit Registration</h1>
     6   <h1>Edit Registration</h1>
       
     7 {% endblock formheading %}
     7 
     8 
     8 {% include '_errors.html' %}
     9 {% block overreg %}{% endblock overreg %}
     9 
    10 
    10 <form action="{% url scipycon_edit_registration id params.scope %}"
    11 {% block url_select_login %}
    11       method="post">
    12   "{% url scipycon_edit_registration params.scope 1 %}"
    12     <fieldset>
    13 {% endblock url_select_login %}
    13         <legend>Edit Registration</legend>
       
    14         <table class="scipycon-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 
    14 
       
    15 {% block url_select_reg %}
       
    16   "{% url scipycon_edit_registration params.scope 1 %}"
       
    17 {% endblock url_select_reg %}
       
    18 
       
    19 {% block formextras %}
       
    20   {{ registration_form.id }}
       
    21 {% endblock formextras %}