# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 1277736177 18000 # Node ID 7e31bce6ea7b9b8eaebf23bb832a7fcd7d7e1b35 # Parent 2e7226e90157eb9f3923e6736b1b46d78a79a56d Update settings-example.py diff -r 2e7226e90157 -r 7e31bce6ea7b settings-example.py --- a/settings-example.py Mon Jun 28 03:00:01 2010 -0500 +++ b/settings-example.py Mon Jun 28 09:42:57 2010 -0500 @@ -96,6 +96,14 @@ #For how long a registration link will remain active ACCOUNT_ACTIVATION_DAYS = 1 +TEMPLATE_CONTEXT_PROCESSORS = ( + "django.core.context_processors.auth", + "django.core.context_processors.debug", + "django.core.context_processors.i18n", + "django.core.context_processors.media", + "django.core.context_processors.request", +) + INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', @@ -113,3 +121,5 @@ 'agora.apps.bundle', 'agora.apps.free_license', ) + +LOGIN_REDIRECT_URL='/'