You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.
As a temp work around, you can add the css class "ckeditor" to your inlined textareas:
from django import forms
from app.models import Foo
class FooForm(forms.ModelForm):
description = forms.CharField(widget=forms.Textarea(attrs={'class':'ckeditor'}))
class Meta:
model = Media
CKEditor looks for that class out of the box.
And then add form = FooForm to your model admin (don't forget to import FooForm at the top).
Inline TextField don't seem to be supported.
The text was updated successfully, but these errors were encountered: