Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-ckedit

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-ckedit

Django integration with the popular WYSIWYG editor CKEditor.

  • 1.0
  • PyPI
  • Socket score

Maintainers
1

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

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc