diff options
author | Nishanth Amuluru | 2011-01-07 09:47:29 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2011-01-07 09:47:29 +0530 |
commit | a460fc5bf10716af5084dd2916348633ca95448d (patch) | |
tree | 3b8053edda4b40b70a1471b395d4908fd4475534 | |
parent | 2e1fe91da9ecd64afa999b4f79c968afbeccace2 (diff) | |
download | pytask-a460fc5bf10716af5084dd2916348633ca95448d.tar.gz pytask-a460fc5bf10716af5084dd2916348633ca95448d.tar.bz2 pytask-a460fc5bf10716af5084dd2916348633ca95448d.zip |
Added templates required for sending activation email
-rw-r--r-- | templates/registration/activation_email.txt | 9 | ||||
-rw-r--r-- | templates/registration/activation_email_subject.txt | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/templates/registration/activation_email.txt b/templates/registration/activation_email.txt new file mode 100644 index 0000000..4ea81a9 --- /dev/null +++ b/templates/registration/activation_email.txt @@ -0,0 +1,9 @@ +Welcome to PyTasks: + +Click on the following link +http://{% url site %}/accounts/activate/{{activation_key}} +and activate your account. +Note that the account has to activated within {{expiration_days}} days + +Regards, +PyTasks Team diff --git a/templates/registration/activation_email_subject.txt b/templates/registration/activation_email_subject.txt new file mode 100644 index 0000000..c73db7e --- /dev/null +++ b/templates/registration/activation_email_subject.txt @@ -0,0 +1 @@ +Welcome to PyTasks! |