I have been following the instructions at https://github.com/django-ckeditor/django-ckeditor, and wiped the database to get the RichTextField() to register. My models.py is:
#!/usr/bin/python
import settings
from ckeditor.fields import RichTextField
from django.db import models
class Page(models.Model):
title = models.CharField(max_length = 255)
body = RichTextField()
location = models.CharField(max_length = 255, verbose_name = "URL")
keywords = models.CharField(max_length = 255, blank = True)
meta_description = models.CharField(max_length = 255, blank = True)
script = models.TextField(blank = True)
def __unicode__(self):
return 'Page "' + self.title + '" at ' + self.location
class Meta:
ordering = ['title']
However, ckeditor isn't showing up for the "body" field, and a look at the page source for the admin Page editor betrays no reference to ckeditor.
The JavaScript inclusions are:
<title>Add page | Django site admin</title>
<link rel="stylesheet" type="text/css" href="/static/admin/css/base.css" />
<link rel="stylesheet" type="text/css" href="/static/admin/css/forms.css" />
<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="/static/admin/css/ie.css" /><![endif]-->
<script type="text/javascript">window.__admin_media_prefix__ = "/static/admin/";</script>
<script type="text/javascript" src="/admin/jsi18n/"></script>
<script type="text/javascript" src="/static/admin/js/core.js"></script>
<script type="text/javascript" src="/static/admin/js/admin/RelatedObjectLookups.js"></script>
<script type="text/javascript" src="/static/admin/js/jquery.js"></script>
<script type="text/javascript" src="/static/admin/js/jquery.init.js"></script>
<script type="text/javascript" src="/static/admin/js/actions.js"></script>
What can/should I do so that the "body" field of a "Page" has a CKeditor for its widget?
I know it's an old question, but it hasn't been answered and it may help others...
Below are the steps I follow when using Ckeditor on django.
1.Add 'ckeditor' to installed apps on settings.py
2.Add ckeditor config variables in settings.py. (upload location and tools)
3.Add ckeditor to the models
4.Finally, the magic happens when you add ckeditor widget in a form:
Of course, don't forget
to get all static data to your static dir, and
to create the databases fields.
One more thing! Add this to the page head when the form is used in order to load the necessary scripts for ckeditor to work
;-)