diff options
-rw-r--r-- | project/scipycon/registration/forms.py | 4 | ||||
-rw-r--r-- | project/templates/registration/submit-registration.html | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/project/scipycon/registration/forms.py b/project/scipycon/registration/forms.py index 8e5c27a..50bfad0 100644 --- a/project/scipycon/registration/forms.py +++ b/project/scipycon/registration/forms.py @@ -33,9 +33,7 @@ class RegistrationSubmitForm(forms.Form): allow_contact = forms.BooleanField(required=False, label=u'Contact', help_text=u'May organizers of SciPy.in contact you after the event?') conference = forms.BooleanField(required=False, label=u'Conference', - help_text=u"""Do you intend to attend SciPy.in 2010 conference? - Note: Only conference has an registration fee of Rs.200 which you will - pay on the spot.""") + help_text=u"""Do you intend to attend SciPy.in 2010 conference?""") tutorial = forms.BooleanField(required=False, label=u'Tutorial', help_text=u'Do you intend to attend the tutorials?') sprint = forms.BooleanField(required=False, label=u'Sprint', diff --git a/project/templates/registration/submit-registration.html b/project/templates/registration/submit-registration.html index c4394a2..a0bea5a 100644 --- a/project/templates/registration/submit-registration.html +++ b/project/templates/registration/submit-registration.html @@ -65,6 +65,11 @@ <fieldset> <legend>Details</legend> + <strong>SciPy.in has a registration fee and nominal charges for + accommodation of out station students and teachers. Please + make sure you read the details before you register. + <a href="{% url scipycon_fees params.scope %}">Click here</a> + for details.</strong> <table class="scipycon-default required"> {% for field in registration_form.personal_fields %} <tr class="{% cycle odd,even %}"> |