diff options
Diffstat (limited to 'project/templates')
4 files changed, 140 insertions, 1 deletions
diff --git a/project/templates/notifications/regpaymentaccolaptop2010.html b/project/templates/notifications/regpaymentaccolaptop2010.html new file mode 100644 index 0000000..b2dde17 --- /dev/null +++ b/project/templates/notifications/regpaymentaccolaptop2010.html @@ -0,0 +1,71 @@ +Hello {{ name }}, + +The SciPy.in team is glad that you have registered for SciPy.in 2010, +to be held at International Institute of Information Technology, +Hyderabad. + +We would like to inform you that we have updated the information about +registration and accommodation fees and payment methods for the same, +on the website. Please find these details at +http://scipy.in/scipyin/2010/about/fees/ + +Due to some requests, we have decided to provide accommodation to a +limited number of out-station participants on a first-come-first-serve +basis. So, if you are an out-station participant and require +accommodation, please fill in your details and send us your fees as +early as possible. + +Your registration for the conference is not confirmed until you pay the +registration fees. If you requested for accommodation, your +accommodation can be confirmed only after we receive your accommodation +fees, based on the availability. It is not confirmed, until you receive +a confirmation mail from our side. + +Also, if you are bringing your own laptop for the conference, please +update the details of the same, in the registration form. + +To update all or any of the information indicated above, follow the +steps below: + +1. Login to your account on http://scipy.in. If you are unable to login + to your account through which you previously registered please + contact admin@scipy.in. We request you not to duplicate the + registrations. + +2. Click on "Registration" link on the left sidebar which takes you to + your registration summary page. + +3. Click on the "Edit Registration" link on that page which takes you + to your original registration form you submitted. + +4. Now you can see two new sections titled "Accommodation" and + "Payment" below the "Demographics" section. + +5. Please check the box if you need accommodation and select your + gender and number of days for which you need the accommodation. + +6. If you have already made the payment as instructed in the Fees page, + please check the "Paid" field and provide additional information + about your payment as mentioned on the registration page. Once + the payment is received you will receive a confirmation email from + the organizers. + +7. In the laptop section you will see a new field called + "Identification Number". If you are getting your own laptop select + "Yes" in the laptop dropdown field and provide us with the Serial + Number/Service Tag Number/Express Service Code of your laptop + using which your laptop can be uniquely identified. This is usually + present at the back of the laptop. Please DONOT give us the Laptop + make and model number such as "Dell Inspiron 1545". + + For example, the unique number for Dell laptops may be service tag + number like "8FRT7RDE" + +8. Submit the registration form to update the details. + +The registration and accommodation fees have to be paid as soon as +possible for us to confirm your registration for the conference. Please +note that there is a limit for the number of registrations. So Hurry! + +Thanks and regards, +Scipy Team diff --git a/project/templates/registration/manage_payments.html b/project/templates/registration/manage_payments.html new file mode 100644 index 0000000..472b53b --- /dev/null +++ b/project/templates/registration/manage_payments.html @@ -0,0 +1,47 @@ +{% extends "base.html" %} + +{% block title %}Manage Payments - {% endblock %} + +{% block content %} +<h1>Manage Payments</h1> + +<form action="" method="post"> + + <fieldset> + <legend>Payment Details</legend> + <table class="scipycon-default"> + {% for registrant in registrants %} + <tr class="{% cycle odd,even %}"> + <th> + <label + {% if registrant.registrant.payment_set.get.type or registrant.registrant.payment_set.get.details %} + {% if not registrant.registrant.payment_set.get.confirmed %} + class="alert" + {% endif %} + {% endif %} + for="id_{{ registrant.registrant.id }}_label"> + {{ registrant.registrant.get_full_name }} + </label> + </th> + <td> + {{ field.errors }} + <input id="user_id_{{ registrant.registrant.id }}" + name="registrant_id_{{ registrant.registrant.id }}" + type="checkbox" name="paid" + {% if registrant.registrant.payment_set.get.confirmed %} + checked=checked + {% endif %} + /><br /> + </td> + </tr> + {% endfor %} + <tr> + <th> + <button class="button left" type="submit">Submit Payment Status</button> + </th> + </tr> + </table> + </fieldset> + +</form> +{% endblock content %} diff --git a/project/templates/registration/regstats.html b/project/templates/registration/regstats.html index e1a0736..f73a36f 100644 --- a/project/templates/registration/regstats.html +++ b/project/templates/registration/regstats.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %}Registration Statistics{% endblock %} +{% block title %}Registration Statistics - {% endblock %} {% block content %} <h1>Registration Statistics</h1> diff --git a/project/templates/registration/submit-registration.html b/project/templates/registration/submit-registration.html index 1124cd3..7c238b0 100644 --- a/project/templates/registration/submit-registration.html +++ b/project/templates/registration/submit-registration.html @@ -19,6 +19,20 @@ $('#id_sex').removeAttr('disabled'); } }); + + if (!$('#id_paid').is(':checked')) { + $('#id_type').attr('disabled', 'disabled'); + $('#id_details').attr('disabled', 'disabled'); + } + $('#id_paid').change(function() { + if (!$('#id_paid').is(':checked')) { + $('#id_type').attr('disabled', 'disabled'); + $('#id_details').attr('disabled', 'disabled'); + } else { + $('#id_type').removeAttr('disabled'); + $('#id_details').removeAttr('disabled'); + } + }); }); @@ -147,6 +161,13 @@ </fieldset> <fieldset> + <legend>Payment</legend> + <table class="scipycon-default"> + {{ payment_form }} + </table> + </fieldset> + + <fieldset> <legend>Others</legend> <table class="scipycon-default"> {{ wifi_form }} |