~netlandish/django-wiki

a070c836c4d458cdc1506be8db28d0da9f0bef7b — Marian 6 years ago d1f05b8
Update installation.rst: fix import

`context_processors` in Django 1.10 and above has been moved from `core` to `template`.

https://stackoverflow.com/a/44071228/196244
1 files changed, 1 insertions(+), 1 deletions(-)

M docs/installation.rst
M docs/installation.rst => docs/installation.rst +1 -1
@@ 91,7 91,7 @@ Configure ``context_processors``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

``django-wiki`` uses the `Django Templates` backend.
Add ``'sekizai.context_processors.sekizai'`` and ``'django.core.context_processors.debug'`` to
Add ``'sekizai.context_processors.sekizai'`` and ``'django.template.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.