8
This repository has been archived on 2023-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cavemanon-wagtail-personali…/README.rst
2016-12-06 12:17:50 +01:00

25 lines
644 B
ReStructuredText

Wagtail personalisation module
==============================
Personalisation module for Wagtail. This project is still work in progress.
Instructions
------------
To install the package with pip::
pip install wagtail-personalisation
Next, include the ``personalisation`` and ``wagtail.contrib.modeladmin`` app in your project's ``INSTALLED_APPS``:
.. code-block:: python
INSTALLED_APPS = [
# ...
'wagtail.contrib.modeladmin',
'personalisation',
# ...
]
Make sure that ``django.contrib.sessions.middleware.SessionMiddleware`` has been added in first, this is a prerequisite for this project.