CKEditor and elFinder integration for Django Framework.
Provides a RichTextField
and CKEditorWidget
with upload and
browse support.
pip install django-cked
or
pip install -e hg+https://bitbucket.org/ssbb/django-cked#egg=django-cked
Add cked
to your INSTALLED_APPS
setting.
Then set ELFINDER_OPTIONS
in your settings:
ELFINDER_OPTIONS = { ## required options 'root': os.path.join(PROJECT_ROOT, 'media', 'uploads'), 'URL': '/media/uploads/', }
And add CKEd URL include to your project urls.py
file:
url(r'^cked/', include('cked.urls')),
- CKEDITOR_OPTIONS: CKEditor config. See http://docs.ckeditor.com/#!/guide/dev_configuration
- ELFINDER_OPTIONS: elFinder config. See https://github.com/Studio-42/elFinder/wiki/Client-configuration-options
from django.db import models from cked.fields import RichTextField class Entry(models.Model): text = RichTextField()
from django import forms from cked.widgets import CKEditorWidget class MyForm(forms.Form): text = forms.CharField(widget=CKEditorWidget)
NOTE: If you are using custom forms, dont’r forget to include form media to your template:
{{ form.media }}