project/templates/registration/edit-registration.html
author Parth buch <parth.buch.115@gmail.com>
Sat, 01 Oct 2011 03:59:03 +0530
branch2011
changeset 429 cde70fd3073c
parent 233 394576ff8a2f
permissions -rw-r--r--
changed the handler404 and handler500 to a custom view, passing scope to get proper formed urls when displaying 404 and 500 pages

{% extends "registration/submit-registration.html" %}

{% block title %}Edit Registration{% endblock %}

{% block formheading %}
  <h1>Edit Registration</h1>
{% endblock formheading %}

{% block overreg %}{% endblock overreg %}

{% block url_select_login %}
  "{% url scipycon_edit_registration params.scope registration.id %}"
{% endblock url_select_login %}

{% block url_select_reg %}
  "{% url scipycon_edit_registration params.scope registration.id %}"
{% endblock url_select_reg %}

{% block formextras %}
  {{ registration_form.id }}
{% endblock formextras %}