Installation

Install django-content-editor using pip:

pip install django-content-editor

Add content_editor to your INSTALLED_APPS setting:

INSTALLED_APPS = [
    # ... other apps
    'content_editor',
    # ... your app(s)
]