我是CMS Django的新手,我正在尝试创建一个将与Blog
应用连接的插件。我想在每页上显示5篇最新博客文章。问题是每个插件实例都必须从博客应用程序连接到某个实例,因为在我们的模板中,我们将使用instance
或instance.article.all()
之类的插件instance.blog.article.all()
。
是否可以在不使用Article
的{{1}}的情况下将BlogPlugin
的实例放入我的instance
模板的模板中?
谢谢。
答案 0 :(得分:2)
您不需要将该插件连接到博客。您可以在插件的render方法中获取对象。 render
方法有点像视图的get_context_data
。例如,您可以在该方法中添加所需的插件;
class BlogPlugin(CMSPluginBase):
...
def render(self, context, instance, placeholder):
context = super(MyPlugin, self).render(context, instance, placeholder)
# If you know that the higher the `id`, the newer the object,
# this gets the latest 5 by ID in reverse order
context['articles'] = Article.objects.all().order_by('-id')[:5]
return context