Skip to main content
File added late

1 file was added to this release more than 14 days after its initial publication. Inspect the release files before installing.

Django CKEditor

Django admin CKEditor integration.

Provides a RichTextField and CKEditorWidget utilizing CKEditor with image upload and browsing support included.

Installation

  1. Install or add django-ckeditor to your python path.

  2. Add ckeditor to your INSTALLED_APPS setting.

  3. Copy the media/ckeditor directory into any directory within your media root. You can override the location in your settings (see below).

  4. Add a CKEDITOR_MEDIA_PREFIX setting to the project’s settings.py file. This setting specifies a URL prefix to the ckeditor JS and CSS media (not uploaded media). Make sure to use a trailing slash:

    CKEDITOR_MEDIA_PREFIX = "/media/ckeditor/"
  5. Add a CKEDITOR_UPLOAD_PATH setting to the project’s settings.py file. This setting specifies an absolute path to your ckeditor media upload directory. Make sure you have write permissions for the path, i.e.:

    CKEDITOR_UPLOAD_PATH = "/home/media/media.lawrence.com/uploads"
  6. Add ckeditor url include to the project’s urls.py file:

    (r'^ckeditor/', include('ckeditor.urls')),
  7. Optionally, set the CKEDITOR_RESTRICT_BY_USER setting to True in the project’s settings.py file (default False). This restricts access to uploaded images to the uploading user (e.g. each user only sees and uploads their own images). Superusers can still see all images. NOTE: This restriction is only enforced within the CKEditor media browser.

  8. Optionally, add a CKEDITOR_UPLOAD_PREFIX setting to the project’s settings.py file. This setting specifies a URL prefix to media uploaded through ckeditor, i.e.:

    CKEDITOR_UPLOAD_PREFIX = "http://media.lawrence.com/media/ckuploads/

    (If CKEDITOR_UPLOAD_PREFIX is not provided, the media URL will fall back to MEDIA_URL with the difference of MEDIA_ROOT and the uploaded resource’s full path and filename appended.)

  9. Optionally, add CKEDITOR_CONFIGS setting to the project’s settings.py file. This specifies sets of CKEditor settings that are passed to CKEditor (see CKEditor’s Setting Configurations), i.e.:

    CKEDITOR_CONFIGS = {
        'awesome_ckeditor': {
            'toolbar': 'Basic',
        },
    }

    The name of the settings can be referenced when instantiating a RichTextField:

    content = RichTextField(config_name='awesome_ckeditor')

    The name of the settings can be referenced when instantiating a CKEditorWidget:

    widget = CKEditorWidget(config_name='awesome_ckeditor')

    By specifying a set named default you’ll be applying its settings to all RichTextField and CKEditorWidget objects for which config_name has not been explicitly defined

    CKEDITOR_CONFIGS = {
        'default': {
            'toolbar': 'Full',
            'height': 300,
            'width': 300,
        },
    }

Usage

Field

The quickest way to add rich text editing capabilities to your models is to use the included RichTextField model field type. A CKEditor widget is rendered as the form field but in all other regards the field behaves as the standard Django TextField. For example:

from django.db import models
from ckeditor.fields import RichTextField

class Post(models.Model):
    content = RichTextField()

Widget

Alernatively you can use the included CKEditorWidget as the widget for a formfield. For example:

from django import forms
from django.contrib import admin
from ckeditor.widgets import CKEditorWidget

from post.models import Post

class PostAdminForm(forms.ModelForm):
    content = forms.CharField(widget=CKEditorWidget())
    class Meta:
        model = Post

class PostAdmin(admin.ModelAdmin):
    form = PostAdminForm

admin.site.register(Post, PostAdmin)

NOTE: If you’re using custom views remember to include ckeditor.js in your form’s media either through {{ form.media }} or through a <script> tag. Admin will do this for you automatically. See Django’s Form Media docs for more info. AUTHORS =======

Created By

  1. shaunsephton

Contributors

  1. buchuki

  2. chr15m

  3. jeffh

  4. loop0

Changelog

0.0.9

  1. Added ability to configure CKeditor through a CKEDITOR_CONFIGS settings. Thanks jeffh for the input.

0.0.8

  1. Removed buggy url include check.

0.0.7

  1. Egg package corrected to exclude testing admin.py and models.py.

0.0.6

  1. Enforce correct configuration.

  2. Changed upload behavior to separate files into directories by upload date. Thanks loop0 .

  3. Added ability to limit user access to uploaded content (see the CKEDITOR_RESTRICT_BY_USER setting). Thanks chr15m for the input.

  4. Added initial set of much needed tests.

  5. General cleanup, light refactor.

0.0.5

  1. csrf_exempt backwards compatability. Thanks chr15m .

0.0.4

  1. Include resources, sorry about that.

0.0.3

  1. More robust PIL import. Thanks buchuki .

  2. Better CKEDITOR_MEDIA_PREFIX setting error.

0.0.2

  1. Included README.rst in manifest.

0.0.1

  1. Added CKEDITOR_UPLOAD_PREFIX setting. Thanks chr15m for the input.

Release files for django-ckeditor 0.0.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

File added late

1 file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release files before installing.

Source distribution (sdist)

Source distribution for django-ckeditor 0.0.9
File Size Uploaded
django-ckeditor-0.0.9.tar.gz 1.4 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for django-ckeditor 0.0.9
File Interpreter ABI Platform
django_ckeditor-0.0.9-py2.7.egg Legacy Egg format - - Details
django_ckeditor-0.0.9-py2.6.egg Legacy Egg format - - Details
django_ckeditor-0.0.9-py2.5.egg Legacy Egg format - - Details

Total release size: 7.2 MB

Release files / django-ckeditor-0.0.9.tar.gz

Download URL django-ckeditor-0.0.9.tar.gz
Size 1.4 MB
Tags Source
SHA-256 checksum
How to use checksums
7e035ef3539fddb5a13d72142b7c1df48d4bda519a9c1123d092c277175cf4fa
BLAKE2b-256 checksum
How to use checksums
6a3caa0b08e6e7353ba3f80ed8da466327977e6a311d55d6bcf50420d33733db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / django_ckeditor-0.0.9-py2.7.egg

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL django_ckeditor-0.0.9-py2.7.egg
Size 1.9 MB
Tags Egg
SHA-256 checksum
How to use checksums
a12af339c151b0957c675227bbba98570f41657c5d5891f29237518b105d7823
BLAKE2b-256 checksum
How to use checksums
4f810c65bc4330995cc98afa96bf2d6819ded5126a46dc03eadb0d5ba0ffe965
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / django_ckeditor-0.0.9-py2.6.egg

Download URL django_ckeditor-0.0.9-py2.6.egg
Size 1.9 MB
Tags Egg
SHA-256 checksum
How to use checksums
2a7df2484fe8b2a75f1e552881f748c0e6da837beb09b6ae716636fc04f4a0a6
BLAKE2b-256 checksum
How to use checksums
9a98e28c184819db4dfeb7aa1f0d43885ab5e8ea138116e141400d168cb4830f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / django_ckeditor-0.0.9-py2.5.egg

Download URL django_ckeditor-0.0.9-py2.5.egg
Size 1.9 MB
Tags Egg
SHA-256 checksum
How to use checksums
720630104db2836f5cb126373cc9d86aa12fbc4c741cce78c6a4678fc3dd1389
BLAKE2b-256 checksum
How to use checksums
da29937064b2373836601d2a9f3fb29ddee70b13261aa7bf20f9a9aee75d2901
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

6.7.3

2 release files

6.7.2

2 release files

6.7.1

2 release files

6.7.0

2 release files

6.6.1

2 release files

6.6.0

2 release files

6.5.1

2 release files

6.5.0

2 release files

6.4.2

2 release files

6.4.1

2 release files

6.4.0

2 release files

6.3.2

2 release files

6.3.1

2 release files

6.3.0

2 release files

6.2.0

2 release files

6.1.0

2 release files

6.0.0

2 release files

5.9.0

2 release files

5.8.0

2 release files

5.7.1

2 release files

5.7.0

2 release files

5.6.1

1 release file

5.6.0

1 release file

5.5.0

1 release file

5.4.0

1 release file

5.3.1

1 release file

5.3.0

1 release file

5.2.2

1 release file

5.2.1

1 release file

5.2.0

1 release file

5.1.1

1 release file

5.1.0

1 release file

5.0.3

1 release file

5.0.2

1 release file

5.0.1

1 release file

5.0.0

1 release file

4.5.3

1 release file

4.5.1

1 release file

4.5.0

1 release file

4.4.8

1 release file

4.4.7

1 release file

4.4.6

1 release file

4.4.5

1 release file

4.4.4

1 release file

4.2.8

2 release files

4.0.2

2 release files

3.6.2

2 release files

This release

0.0.9 This release

4 release files

0.0.8

3 release files

0.0.7

3 release files

0.0.6

3 release files

0.0.5

3 release files

0.0.4

3 release files

0.0.3

3 release files

0.0.2

3 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page