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.
2f5df08fc40a76f76b1ac5542ff612728f8e6622
Wagtail personalisation module ============================== Personalisation module for Wagtail. This project is still work in progresss. Instructions ------------ To install the package with pip:: pip install wagtail-personalisation Next, include the ``personalisation``, ``polymorphic`` and ``wagtail.contrib.modeladmin`` app in your project's ``INSTALLED_APPS``: .. code-block:: python INSTALLED_APPS = [ # ... 'wagtail.contrib.modeladmin', 'polymorphic', 'personalisation', # ... ] Last but not least, add ``personalisation.middleware.SegmentMiddleware`` to your project's ``MIDDLEWARE``: .. code-block:: python MIDDLEWARE = [ # ... 'personalisation.middleware.SegmentMiddleware', # ... ] Make sure that ``django.contrib.sessions.middleware.SessionMiddleware`` has been added in first, this is a prerequisite for this project.
Description
Rule-based personalisation for Wagtail CMS maintained by cavemanon for RocksForMedia.
Languages
Python
87.3%
HTML
9%
SCSS
1.9%
JavaScript
1.4%
Makefile
0.4%