~netlandish/django-wiki

d0721fdcf463549f20434d28f6faed2c0e6aea0f — Raffaele Salmaso 6 years ago a6f74f3
Update context_processors docs
1 files changed, 6 insertions(+), 6 deletions(-)

M docs/installation.rst
M docs/installation.rst => docs/installation.rst +6 -6
@@ 87,13 87,13 @@ To sync and create tables, do:

    python manage.py migrate

Configure ``TEMPLATE_CONTEXT_PROCESSORS``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Configure ``context_processors``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Add ``'sekizai.context_processors.sekizai'`` and
``'django.core.context_processors.debug'`` to
``settings.TEMPLATE_CONTEXT_PROCESSORS``. Please refer to the `Django
settings docs <https://docs.djangoproject.com/en/dev/ref/settings/>`_
``django-wiki`` uses the `Django Templates` backend.
Add ``'sekizai.context_processors.sekizai'`` and ``'django.core.context_processors.debug'`` to
``context_processors`` section of your template backend settings.
Please refer to the `Django templates docs <https://docs.djangoproject.com/en/1.11/topics/templates/#django.template.backends.django.DjangoTemplates/>`_
to see the current default setting for this variable.

.. code-block:: python