summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorEnderson Menezes <endersonster@gmail.com>2020-08-19 15:21:17 -0300
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-08-20 07:51:20 +0200
commit26ccc7701daa77c72f467fdad9fedd0165531875 (patch)
tree157171b8e04f59a97a2542132cfba87d11fcde29 /docs/ref
parent7eaa2776e1f176863c00b961bc76b28a3b5293c7 (diff)
[3.1.x] Fixed #31909 -- Fixed typo in docs/ref/contrib/admin/index.txt.
Backport of 67e4a9a4b9a40609fecc14f1604929ff2259a15a from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/admin/index.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 77868d7281..1fadbcf0d5 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -34,15 +34,15 @@ If you're not using the default project template, here are the requirements:
#. Configure a :class:`~django.template.backends.django.DjangoTemplates`
backend in your :setting:`TEMPLATES` setting with
- ``django.contrib.auth.context_processors.auth``,
- ``django.contrib.messages.context_processors.request``, and
+ ``django.template.context_processors.request``,
+ ``django.contrib.auth.context_processors.auth``, and
``django.contrib.messages.context_processors.messages`` in
the ``'context_processors'`` option of :setting:`OPTIONS
<TEMPLATES-OPTIONS>`.
.. versionchanged:: 3.1
- ``django.contrib.messages.context_processors.request`` was added as a
+ ``django.template.context_processors.request`` was added as a
requirement in the ``'context_processors'`` option to support the new
:attr:`.AdminSite.enable_nav_sidebar`.