摘要:
安装 pip install django-ckeditor settings.py INSTALLED_APPS = [ ... 'ckeditor', 'ckeditor_uploader', ] CKEDITOR_UPLOAD_PATH = 'editor' CKEDITOR_IMAGE_BA 阅读全文
摘要:
安装captcha pip install django-simple-captcha settings.py INSTALLED_APPS = [ ... 'captcha', ] urls.py urlpatterns = [ path('xadmin/', xadmin.site.urls), 阅读全文