Socket
Socket
Sign inDemoInstall

django-ckedit

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    django-ckedit

Django integration with the popular WYSIWYG editor CKEditor.


Maintainers
1

Readme

Django CKEditor

Django CKEditor contains the JavaScript WYSIWYG editor, CKEditor and functionality for uploading and browsing files on your server.

Installation

Run pip install django-ckedit

Add ckeditor to your INSTALLED_APPS setting:

INSTALLED_APPS = (
    ...
    'ckeditor',
)

To your sites url.py add:

urlpatterns = patterns('',
    ...
    url(r'^ckeditor/', include('ckeditor.urls')),
)

Views

###upload Uploads a file from the CKEditor insert image dialog's upload section to a user-specified path using the default storage.

##browse Displays image thumbnails from the CKEditor insert image dialog's browse section.

Settings

CKEDTIOR_UPLOAD_DIRECTORY (default 'ckeditor')

The directory the uploads are saved to and files are browsed from.

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc