Made changes to the activation mail and changed the activation dates.
authorMadhusudan.C.S <madhusudancs@gmail.com>
Wed, 11 Nov 2009 12:55:39 +0530
changeset 21 127b772a3af4
parent 20 486cfc8dd611
child 22 2294c71a61ea
Made changes to the activation mail and changed the activation dates.
project/production.py
project/templates/notifications/activate_mail.html
scripts/scipy_migrate.py
--- a/project/production.py	Tue Nov 10 12:28:24 2009 +0530
+++ b/project/production.py	Wed Nov 11 12:55:39 2009 +0530
@@ -29,6 +29,8 @@
     'registration',
 )
 
+ACCOUNT_ACTIVATION_DAYS = 55
+
 DATABASE_ENGINE = 'mysql'
 DATABASE_NAME = 'conference2009'
 DATABASE_USER = 'root'
--- a/project/templates/notifications/activate_mail.html	Tue Nov 10 12:28:24 2009 +0530
+++ b/project/templates/notifications/activate_mail.html	Wed Nov 11 12:55:39 2009 +0530
@@ -1,8 +1,11 @@
 Hello everyone,
   We have not activated your account till now since were still in the
 process of finalizing the ideas for SciPy.in 2009 and the smoothing out
-the organization details. This mail is an activation mail. Click on the
-link below to activate your account.
+the organization details. This mail describes the steps to complete the
+registration process for SciPy.in. Click on the activation link below to
+activate your account. Also please note the registration process is not
+complete by just activating your account. Read further below for
+completing the registration process.
 
 http://scipy.in/accounts/activate/{{ activation_key }}/
 
@@ -17,14 +20,18 @@
 {{ activation_key }}
 
 NOTE: Please activate your account within next 7 days i.e, before
-October 26th, 2009. Otherwise your account will be removed from
+November 18th, 2009. Otherwise your account will be removed from
 our database.
 
-Very important: The registration process is not complete yet. Once you
-activate your account you will be able to login on the site. Please login
-and click on the registration link at the left panel again. You will be
-presented with other details. Please fill in the relevant details. This
-information is very much required for us to conduct SciPy very smoothly.
+There is a registration fee of Rs.200 for the conference. But there is
+no registration fee for tutorials and sprint. The registration fee for
+the conference can be paid at the venue at the registration desk at
+the venue on the day of conference.
+
+Very important: Please login and click on the registration link on the
+left panel again. You will be presented with other details. Please fill
+in the relevant details. This information is very much required for us
+to conduct SciPy very smoothly. 
 
 Optionally you can also click on Edit Profile link at the top and fill in
 your bio.
@@ -32,4 +39,4 @@
 
 --
  Thanks for understanding,
- FOSSEE Team
+ SciPy Team
--- a/scripts/scipy_migrate.py	Tue Nov 10 12:28:24 2009 +0530
+++ b/scripts/scipy_migrate.py	Wed Nov 11 12:55:39 2009 +0530
@@ -26,7 +26,7 @@
     for reg in regs:
 
         subject = "Update and activate your SciPy.in registration."
-        message = loader.render_to_string(template, dictionary={'activation_key': reg.activation_key})
+        message = loader.render_to_string(
+            template, dictionary={'activation_key': reg.activation_key})
 
         reg.user.email_user(subject=subject, message=message)
-