diff -r 9a77edda77b7 -r fda1c66b25f9 project/templates/registration/submit-registration.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/registration/submit-registration.html Fri Oct 30 15:09:12 2009 +0530 @@ -0,0 +1,106 @@ +{% extends "base.html" %} + +{% block title %}Submit Registration{% endblock %} + +{% block content %} + +

Submit Registration

+ + {% if over_reg %} +
+ We have already reached the total number of registrations for the + conference. If you would like to be put on a waiting list in the event that + someone can't make it to the conference, please register below and we + will be in contact if a registration spot comes available. N.B. Do not + pay the admission fee. +
+ {% endif %} +
+ {% if not user.is_authenticated %} +
+ Have you already registered for the conference? + + {{ login_form }} +
+ + + + +
+ +
+ {% endif %} + +

+ + {% if not user.is_authenticated %} +
+
+
+ Registrant Details + + {{ registrant_form }} +
+ + +
+ {% endif %} +
+ +{% if registration_form.errors %}
Please correct the errors below
{% endif %} + +
+ Details + + {% for field in registration_form.personal_fields %} + + + {% endfor %} + + {% for field in registration_form.other_fields %} + + + {% endfor %} + +
{{ field.label_tag }}{{ field.errors }}{{ field }}
{{ field.help_text }}
{{ field.label_tag }}{{ field.errors }}{{ field }}
{{ field.help_text }}
+
+ +
+ +
+ Demographics + + {% for field in registration_form.demographic_fields %} + + + {% endfor %} +
{{ field.label_tag }}{{ field.errors }}{{ field }}
{{ field.help_text }}
+
+
+ Others + + {{ wifi_form }} +
+ + +
+
+ {% if message %} + + {% endif %} +{% endblock content %}