Document the need of 'django.core.context_processors.request'

in docs/settings.rst
This commit is contained in:
Alex Garel 2011-11-09 18:29:57 +01:00
parent ab84017dd5
commit d78ea39c69

View File

@ -1,6 +1,14 @@
Settings Settings
======== ========
First, django-helpdesk needs ``django.core.context_processors.request`` activated, so in your ``settings.py`` add::
from django.conf import global_settings
TEMPLATE_CONTEXT_PROCESSORS = (
global_settings.TEMPLATE_CONTEXT_PROCESSORS +
('django.core.context_processors.request',)
)
The following settings can be changed in your ``settings.py`` file to help change the way django-helpdesk operates. The following settings can be changed in your ``settings.py`` file to help change the way django-helpdesk operates.
HELPDESK_DEFAULT_SETTINGS HELPDESK_DEFAULT_SETTINGS