X-Git-Url: http://mmka.chem.univ.gda.pl/gitweb/?a=blobdiff_plain;f=django_simple%2Fsettings.py;h=8e123c7057f517f5c6315537a3e9066a40e42d2a;hb=92a0048a27b19550c30d6cdec60add3234227f57;hp=f594aadf095cc605a70c8607cfd9835d5f7fc91c;hpb=ae94249ef07031690e511f3c3f78b9699c8ce372;p=django_unres.git diff --git a/django_simple/settings.py b/django_simple/settings.py index f594aad..8e123c7 100644 --- a/django_simple/settings.py +++ b/django_simple/settings.py @@ -33,6 +33,7 @@ ACCOUNT_ACTIVATION_DAYS = 2 # two days # Application definition INSTALLED_APPS = [ + 'django_su', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', @@ -60,6 +61,7 @@ MIDDLEWARE_CLASSES = [ AUTHENTICATION_BACKENDS = ( 'django.contrib.auth.backends.ModelBackend', 'lazysignup.backends.LazySignupBackend', + 'django_su.backends.SuBackend', ) ROOT_URLCONF = 'django_simple.urls'