0

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)
4

1 に答える 1

0

小さな、しかし重大な間違い。プラグインではなく、モデルをインポートしていました。

于 2013-03-05T22:04:04.557 に答える