[Answered ]-How to fix ImportError: No module named urls

2👍

Read the documentation

NOTICE: django-ckeditor 5 has backward incompatible code moves against 4.5.1.

File upload support have been moved to ckeditor_uploader. The urls are in ckeditor_uploader.urls while for file uploading widget you have to use RichTextUploadingField instead of RichTextField.

..

Add ckeditor_uploader to your INSTALLED_APPS setting.

Add CKEditor URL include to your project’s urls.py file:

(r'^ckeditor/', include('ckeditor_uploader.urls')),

Leave a comment