pip install djedi-cms
python
INSTALLED_APPS = [
...
'djedi',
...
]
python
from djedi import editor
def cms_editor(request):
python
from django.urls import path
from .views import cms_editor
urlpatterns = [
...
path('cms-editor/', cms_editor, name='cms_editor'),
...
]