-
-
Save ronbeltran/0f076d17aaf86897ed673be73336283a to your computer and use it in GitHub Desktop.
Using CKEditor with Flatpages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib import admin | |
from django.contrib.flatpages.models import FlatPage | |
# Note: we are renaming the original Admin and Form as we import them! | |
from django.contrib.flatpages.admin import FlatPageAdmin as FlatPageAdminOld | |
from django.contrib.flatpages.admin import FlatpageForm as FlatpageFormOld | |
from django import forms | |
from ckeditor.widgets import CKEditorWidget | |
class FlatpageForm(FlatpageFormOld): | |
content = forms.CharField(widget=CKEditorWidget()) | |
class Meta: | |
model = FlatPage # this is not automatically inherited from FlatpageFormOld | |
fields = '__all__' | |
class FlatPageAdmin(FlatPageAdminOld): | |
form = FlatpageForm | |
# We have to unregister the normal admin, and then reregister ours | |
admin.site.unregister(FlatPage) | |
admin.site.register(FlatPage, FlatPageAdmin) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In order to make it work with latest versions of Django you should add
Use with ckeditor https://django-ckeditor.readthedocs.io/en/latest/index.html#installation