Projet

Général

Profil

0001-settings.py-remove-django.contrib.sites.patch

Thomas Noël, 13 mars 2014 13:36

Télécharger (909 octets)

Voir les différences:

Subject: [PATCH] settings.py: remove django.contrib.sites

The sites framework is usually used on multi-site application,
but authentic2 can not really works with such a simple framework.
To serve multiple sites with one authentic2 instance, try to use
more generic solutions like django-tenant-schemas
 authentic2/settings.py | 1 -
 1 file changed, 1 deletion(-)
authentic2/settings.py
134 134
    'django.contrib.contenttypes',
135 135
    'django.contrib.sessions',
136 136
    'django.contrib.messages',
137
    'django.contrib.sites',
138 137
    'south',
139 138
    'admin_tools',
140 139
    'admin_tools.theming',
141
-