Django StackedInline does not work in CmsPlugin -
in cms adminpanel have inline cmsplugin in django.
here code:
class myentryinline(stackedinline): model = myrelatedmodel = 2 class mycmsplugin(cmspluginbase): model = mypluginmodel render_template = "cms_plugins/my_template.html" inlines = [myentryinline,]
the add_view
works well.
however, change_view
not show me inlines()...
it seems bug or limit of django-cms.
django version = (1, 4, 5, 'final', 0)
djangocms version = '2.3.5'
my fault. unicode error of "mypluginmodel" failed silently (why silently?)
Comments
Post a Comment