python
INSTALLED_APPS = [
...
'grappelli',
...
]
python
from django.urls import include, path
from django.contrib import admin
urlpatterns = [
...
path('admin/', admin.site.urls),
...
]
python
python
CKEDITOR_CONFIGS = {
'default': {
'toolbar': 'Full',
'height': 300,
'width': '100%',
},
}
python
TINYMCE_DEFAULT_CONFIG = {
'height': 300,
'width': '100%',
}