aboutsummaryrefslogtreecommitdiffstats
path: root/django_skaschool
diff options
context:
space:
mode:
Diffstat (limited to 'django_skaschool')
-rw-r--r--django_skaschool/settings.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/django_skaschool/settings.py b/django_skaschool/settings.py
index 7bb21b3..f80c964 100644
--- a/django_skaschool/settings.py
+++ b/django_skaschool/settings.py
@@ -44,6 +44,7 @@ THIRD_PARTY_APPS = (
#'south',
'bootstrap3',
'registration',
+ 'captcha',
)
# LOCAL_APPS
LOCAL_APPS = (
@@ -166,4 +167,9 @@ ACCOUNT_ACTIVATION_DAYS = 7
# whether registration of new accounts if currently permitted
REGISTRATION_OPEN = True
+## django-recaptcha
+# global key (recaptcha.net)
+RECAPTCHA_PUBLIC_KEY = '6Lf8dvISAAAAAPljExJQcAkx4jDZPOYbTGXYXCME'
+RECAPTCHA_PRIVATE_KEY = '6Lf8dvISAAAAAH75mmLlVWOp6JB9Gx6WARR_6HXb'
+
# vim: set ts=4 sw=4 tw=0 fenc=utf-8 ft=python: