# HG changeset patch # User Madhusudan.C.S # Date 1257934946 -19800 # Node ID bb1f31e9c3ab95104d36ca7f407e8c08f7cca677 # Parent 3cb3f853a193a194e408179d042a56e03f90ec1a Fixed Activation. diff -r 3cb3f853a193 -r bb1f31e9c3ab project/templates/registration/activate.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/registration/activate.html Wed Nov 11 15:52:26 2009 +0530 @@ -0,0 +1,28 @@ +{% extends "base.html" %} + +{% block content %} +
+

{% trans "Register" %}

+ +{% endblock %} diff -r 3cb3f853a193 -r bb1f31e9c3ab project/templates/registration/activation_complete.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/registration/activation_complete.html Wed Nov 11 15:52:26 2009 +0530 @@ -0,0 +1,30 @@ +{% extends "base.html" %} + +{% load i18n %} + +{% block content %} +
+

{% trans "Register" %}

+ +{% endblock %} diff -r 3cb3f853a193 -r bb1f31e9c3ab project/templates/registration/activation_email.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/registration/activation_email.txt Wed Nov 11 15:52:26 2009 +0530 @@ -0,0 +1,17 @@ +Hello everyone, + + It looks like you have registered for SciPy.in with this email address. +To confirm your registration please activate your account by clicking on the +link below. + + http://scipy.in/accounts/activate/{{ activation_key }} + +If your browser doesn't support clicking on the link, please copy +paste the URL in your browser's address bar. + +Note: Your activation key is valid only for 7 days. Please activate your accout +before that. + +-- + Thanks for registering, + SciPy team \ No newline at end of file diff -r 3cb3f853a193 -r bb1f31e9c3ab project/templates/registration/activation_email_subject.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/registration/activation_email_subject.txt Wed Nov 11 15:52:26 2009 +0530 @@ -0,0 +1,1 @@ +[SciPy.in] Account activation mail \ No newline at end of file diff -r 3cb3f853a193 -r bb1f31e9c3ab project/templates/registration/registration_complete.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/registration/registration_complete.html Wed Nov 11 15:52:26 2009 +0530 @@ -0,0 +1,31 @@ +{% extends "base.html" %} + +{% load i18n %} + +{% block content %} +
+

{% trans "Register" %}

+ +{% endblock %} diff -r 3cb3f853a193 -r bb1f31e9c3ab project/templates/registration/registration_form.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/registration/registration_form.html Wed Nov 11 15:52:26 2009 +0530 @@ -0,0 +1,33 @@ +{% extends "base.html" %} + +{% load i18n %} + +{% block content %} +
+

{% trans "Register" %}

+ +{% endblock %} diff -r 3cb3f853a193 -r bb1f31e9c3ab project/urls.py --- a/project/urls.py Wed Nov 11 15:36:08 2009 +0530 +++ b/project/urls.py Wed Nov 11 15:52:26 2009 +0530 @@ -73,7 +73,8 @@ name='reaching'), url(r'^talks-cfp/schedule/$', direct_to_template, {"template": "talk/schedule.html"}, - name='reaching') + name='reaching'), + (r'^accounts/', include('registration.urls')), ) # Password reset