Skip to main content

Django admin CKEditor integration.

Project description

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 url.py file:

    (r'^ckeditor/', include('ckeditor.urls')),
  7. 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 CKEDITOR_UPLOAD_PATH 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)

ChangeLog

0.0.1

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

0.0.2

  1. Included README.rst in manifest.

0.0.3

  1. More robust PIL import, thanks Dusty Phillips.

  2. Better CKEDITOR_MEDIA_PREFIX setting error.

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.3.tar.gz (5.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

django_ckeditor-0.0.3-py2.6.egg (10.0 kB view details)

Uploaded Egg

django_ckeditor-0.0.3-py2.5.egg (10.0 kB view details)

Uploaded Egg

File details

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

File metadata

File hashes

Hashes for django-ckeditor-0.0.3.tar.gz
Algorithm Hash digest
SHA256 74e737f5fac047f6dec01532c2b2cc4e517d4892f0a1bc6fb5873cf524124661
MD5 be22bd81e67b3feff9638e68b13959bf
BLAKE2b-256 94aae6f57d5602f57cd74938f5c30a13dcf988bde0db7adb506f77779917ce07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_ckeditor-0.0.3-py2.6.egg
Algorithm Hash digest
SHA256 2c5ed0762624bf87768da4b7edf6503353d06a140817747a3b280b3926c258bb
MD5 876f801197f41d4c18dacd5ef0028ae4
BLAKE2b-256 3ec65f94cb9fec4586f138fa1221e2c7e98b3e59a6ae6a4050778f979d9447fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_ckeditor-0.0.3-py2.5.egg
Algorithm Hash digest
SHA256 d10a1e71b915d0b54b22eb36d6f8a16b43abd6b5b97d5167bb1a768ed2d1797a
MD5 30df47bb5a1058a19b057701681dd8ef
BLAKE2b-256 ca1743bf92e66b02af146860a32b4e742166f53bc68ea32c8743d10c671e65ff

See more details on using hashes here.

Supported by

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