Django-CMS ドキュメント ( http://docs.django-cms.org/en/2.3.5/extending_cms/custom_plugins.html )で 2.4 の例を複製しようとしています。ただし、cms_plugins.pyでモデルを指定するたびにclass HelloPlugin
、admin の CMS セクション全体が表示されなくなります。これの原因は何ですか?
models.py
from django.db import models
class MyModel(models.Model):
title = models.CharField(max_length=50, null=True, blank=True)
def __unicode__(self):
return self.title
from cms.models.pluginmodel import CMSPlugin
class HelloPlugin(CMSPlugin):
ad = models.ForeignKey('core.MyModel', related_name='plugins')
def __unicode__(self):
return self.ad.title
cms_plugins.py
class HelloPlugin(CMSPluginBase):
model = MyModel
name = _("MyModel Plugin")
render_template = "myplugin.html"
def render(self, context, instance, placeholder):
context['instance'] = instance
return context
plugin_pool.register_plugin(HelloPlugin)