📅  最后修改于: 2022-03-11 14:56:17.848000             🧑  作者: Mango
I found the problem. I SHOULD INCLUDE URLS IN MAIN urls.py IN THE PROJECT
NOT IN ANOTHER URLS EXISTS IN INCLUDED APPS
Like this -->
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('paintshop.urls')),
path('ckeditor/', include('ckeditor_uploader.urls')), <-- here it is.
]