Open Badestrand opened 8 years ago
Hey
version 0.3.0 gives me the error
ImproperlyConfigured: CMS Plugins must define a render template or set render_plugin=False: <class 'aldryn_gallery.cms_plugins.SlideCMSPlugin'>
and I can solve it only when adding the line
render_template = False
to the SlideCMSPlugin class in cms_plugins.py. I am using Python 2.7 with Django 1.6.7 and the Django CMS 3.0.8.
SlideCMSPlugin
cms_plugins.py
Note that I also need to add the line to the SlideFolderCMSPlugin class to get rid of the PluginAlreadyRegistered error from #24
SlideFolderCMSPlugin
PluginAlreadyRegistered
That may simply be due to the out of date Django version, I don't know. But I am stuck to that one
Hey
version 0.3.0 gives me the error
and I can solve it only when adding the line
to the
SlideCMSPlugin
class incms_plugins.py
. I am using Python 2.7 with Django 1.6.7 and the Django CMS 3.0.8.Note that I also need to add the line to the
SlideFolderCMSPlugin
class to get rid of thePluginAlreadyRegistered
error from #24