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
If you have inlines, and this doesn't matter if you added the fields via widget or model, still same thing occurs. The ckeditor iframe body is not initiated appropriately, normally it looks like this:
If you have inlines, and this doesn't matter if you added the fields via widget or model, still same thing occurs. The ckeditor iframe body is not initiated appropriately, normally it looks like this:
instead you get only:
This is if you use inlines only and use the "add another object" button in the admin i.e.
class TeamMemberInline(admin.StackedInline):
model = TeamMember
extra = 0
class BiosAdmin(admin.ModelAdmin):
inlines = (TeamMemberInline, )
list_display = ('title', )
So when you click "add another team member" in the django admin for bio, it adds it and looks like its a ckeditor widget but it isn't editable.
The text was updated successfully, but these errors were encountered: