Skip to content

Commit

Permalink
docs: Update formatting in how-to/install.rst to avoid misunderstandi…
Browse files Browse the repository at this point in the history
…ng (#7501)

* Update install.rst

* Update install.rst
  • Loading branch information
fsbraun committed Feb 5, 2023
1 parent ff94c5d commit 86a9a14
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions docs/how_to/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -211,15 +211,18 @@ Sekizai
=======

`Django Sekizai <https://github.com/ojii/django-sekizai>`_ is required by the CMS for static files management. You need
to have::
to have ``'sekizai'`` listed in ``INSTALLED_APPS``,

'sekizai'
.. code-block:: python
listed in ``INSTALLED_APPS``, and::
INSTALLED_APPS = [
...,
'sekizai',
...,
]
'sekizai.context_processors.sekizai'
in the ``TEMPLATES['OPTIONS']['context_processors']``:
and ``'sekizai.context_processors.sekizai'`` in the ``TEMPLATES['OPTIONS']['context_processors']``:

.. code-block:: python
Expand Down

0 comments on commit 86a9a14

Please sign in to comment.