Browse Source

Move ldapdb in INSTALLED_APP before admin

Fabs 10 years ago
parent
commit
1695d97a88
1 changed files with 1 additions and 1 deletions
  1. 1 1
      coin/settings.py

+ 1 - 1
coin/settings.py

@@ -146,6 +146,7 @@ INSTALLED_APPS = (
     'django.contrib.contenttypes',
     'django.contrib.sessions',
     #'django.contrib.sites',
+    'ldapdb',  # LDAP as database backend
     'django.contrib.messages',
     'django.contrib.staticfiles',
     # Uncomment the next line to enable the admin:
@@ -153,7 +154,6 @@ INSTALLED_APPS = (
     # Uncomment the next line to enable admin documentation:
     #'django.contrib.admindocs',
     'south',
-    'ldapdb',  # LDAP as database backend
     'autocomplete_light', #Automagic autocomplete foreingkey form component
     'activelink', #Detect if a link match actual page
     'coin',