Michael Radziej wrote: > You need to copy the specific settings from > django.conf.global_settings to your settings module, it is: > > TEMPLATE_CONTEXT_PROCESSORS = ( > 'django.core.context_processors.auth', > 'django.core.context_processors.debug', > 'django.core.context_processors.i18n', > # 'django.core.context_processors.request', > ) > > Then comment out context_processors.auth (or however you want to > deal with it), and get: > > TEMPLATE_CONTEXT_PROCESSORS = ( > # 'django.core.context_processors.auth', > 'django.core.context_processors.debug', > 'django.core.context_processors.i18n', > # 'django.core.context_processors.request', > ) > > > I'm not sure if you run into other problems then, but let's deal > with those afterwards.
works perfectly. Haven't detected any side effect yet. thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---