Skip to main content

Django admin CKEditor integration.

Project description

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.)

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)

AUTHORS

Created By

  1. shaunsephton

Contributors

  1. loop0

  2. chr15m

  3. buchuki

Changelog

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-ckeditor-0.0.8.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

django_ckeditor-0.0.8-py2.6.egg (1.9 MB view details)

Uploaded Source

django_ckeditor-0.0.8-py2.5.egg (1.9 MB view details)

Uploaded Source

File details

Details for the file django-ckeditor-0.0.8.tar.gz.

File metadata

File hashes

Hashes for django-ckeditor-0.0.8.tar.gz
Algorithm Hash digest
SHA256 d9648cf49a3b6f394a749e5eb9729a76f6f648ea558f15a43a45adeef69015b6
MD5 94a8538420629007687662fbd89361f8
BLAKE2b-256 d070e0874b542497f0c3aea46d6e4833a50cbd139d9258fa1675f6817838ad63

See more details on using hashes here.

File details

Details for the file django_ckeditor-0.0.8-py2.6.egg.

File metadata

File hashes

Hashes for django_ckeditor-0.0.8-py2.6.egg
Algorithm Hash digest
SHA256 86e6fbfa07ced698e89fb8b217f7d9670e16b0c5639bbb18cae00ab8f398f1a6
MD5 c9cefb4e4ea9bf34bf06c09329c24df4
BLAKE2b-256 1cdcc9d4c5b244d56718b3c99de66aab4a2e638a8d5f3ae9e9ebed561f11347f

See more details on using hashes here.

File details

Details for the file django_ckeditor-0.0.8-py2.5.egg.

File metadata

File hashes

Hashes for django_ckeditor-0.0.8-py2.5.egg
Algorithm Hash digest
SHA256 c01e4d8644eb2dfca0ef6788033d10b1e980e8fd7ea071b6365aef383e86df8e
MD5 069013eff467e561e14c685627179550
BLAKE2b-256 335c47994e549123d45f5f092553dc51791df76ff240094152b5e1a52d6af745

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page