三。在你的settings文件裏添加:css
CKEDITOR_MEDIA_PREFIX = "/site_media/ckeditor/" CKEDITOR_UPLOAD_PATH = "/var/www/html/nav/media/report/uploads" CKEDITOR_CONFIGS = { 'default': { 'toolbar': 'Full', 'height': 400, 'width': 1000, }, 'awesome_ckeditor': { 'toolbar': 'Basic', }, }「/site_media/」這個須要在urls裏指向你的靜態文件目錄
四。在你須要用到ckeditor的models文件裏面引入這個模塊:html
from ckeditor.fields import RichTextField
而後定義須要使用這個模塊的字段,相似於:python
class News(models.Model): content=RichTextField(verbose_name="內容")好了,如今你就能夠在你的django項目的admin模塊中使用ckeditor了,enjoy your work!