project/templates/registration/edit-registration.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 16 Nov 2010 18:09:55 +0530
changeset 233 394576ff8a2f
parent 133 c5de36c4573e
permissions -rw-r--r--
Fix major bug: Change hard coded registration form redirect to based on User and do int conversions for ids.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
133
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
     1
{% extends "registration/submit-registration.html" %}
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     2
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     3
{% block title %}Edit Registration{% endblock %}
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     4
133
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
     5
{% block formheading %}
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
     6
  <h1>Edit Registration</h1>
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
     7
{% endblock formheading %}
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
     8
133
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
     9
{% block overreg %}{% endblock overreg %}
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    10
133
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
    11
{% block url_select_login %}
233
394576ff8a2f Fix major bug: Change hard coded registration form redirect to based on User and do int conversions for ids.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 133
diff changeset
    12
  "{% url scipycon_edit_registration params.scope registration.id %}"
133
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
    13
{% endblock url_select_login %}
1
fda1c66b25f9 Added all the files from kiwipycon and the changes made for SciPy.in.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
diff changeset
    14
133
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
    15
{% block url_select_reg %}
233
394576ff8a2f Fix major bug: Change hard coded registration form redirect to based on User and do int conversions for ids.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 133
diff changeset
    16
  "{% url scipycon_edit_registration params.scope registration.id %}"
133
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
    17
{% endblock url_select_reg %}
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
    18
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
    19
{% block formextras %}
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
    20
  {{ registration_form.id }}
c5de36c4573e Reorganized registration edit form to inherit from the submit form.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 123
diff changeset
    21
{% endblock formextras %}