django-ckeditor

How to remove images uploaded with django-ckeditor?

冷暖自知 提交于 2019-12-06 00:59:47
问题 I have uploaded some images within the CKEditor in the Django admin interface. I can browse and select images by clicking the "Image" button in the editor, and then click "Browse Server" in the window that pops up. Here is a screenshot of the pop-up: My question is: How can I delete images on the server? 回答1: I'm afraid this is not possible with ckeditor (at least I see no such functionality out-of-the-box). You can use a django file manager https://www.djangopackages.com/grids/g/file

Django-CKEditor Image Upload

↘锁芯ラ 提交于 2019-12-04 09:22:37
I've currently installed Django-CKEditor and have my own custom toolbar. I'm struggling to find how to enable image uploading. When clicking the Image button, I can only upload via URL. I know that, in the plugin, there are views to handle file browsing and uploading but I'm not sure how to activate or use these. There is sparse documentation on the plugin so I am reaching out for your help! https://github.com/shaunsephton/django-ckeditor In the current version (5) you can use RichTextUploadingField instead of RichTextField , which enables uploading and browse files button. Previously you have