blob: 7e317af184a500b03a1095400d093f35d6146ca1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% 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 %}
|