I installed django-ckeditor==4.4.8 on django1.6
But I get a minimum of buttons in the toolbar, I tried to change the toolbar to get more options, specially to be able to add pictures
this is what I get:
and these are my settings:
#ckeditor settings
CKEDITOR_UPLOAD_PATH = "images/"
CKEDITOR_IMAGE_BACKEND = 'pillow'
CKEDITOR_JQUERY_URL = '//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js'
AWS_QUERYSTRING_AUTH = False
CKEDITOR_CONFIGS = {
'default': {
'toolbar':'Full',
},
}
btw I wonder what happen when you add a picture and then delete that link of picture from text editor, is that picture doing to be deleted?
Have this in your settings.py