I'm really new to Django-CMS, I had a look at the docs but I can;'t find what I need so I could be probably doing it wrong. Anyway I'm creating a custom plugin, I have the model with 3 placeholders inside:
models.py
class Tile(CMSPlugin):
text = PlaceholderField('text', related_name='tile_text')
img = PlaceholderField('img', related_name='tile_img')
link = PlaceholderField('link', related_name='tile_link')
then I have 3 different Plugins using the model:
cms_plugins.py
from cms.plugin_base import CMSPluginBase
from cms.models.pluginmodel import CMSPlugin
from cms.plugin_pool import plugin_pool
from django.utils.translation import ugettext_lazy as _
from tiles_plugin.models import Tile
class BigTilePlugin(CMSPluginBase):
model = Tile
name = _('Big Tile Plugin')
render_template = 'tiles_plugin/big_tile.html'
allow_children = True
def render(self, context, instance, placeholder):
context['instance'] = instance
return context
class MedTilePlugin(CMSPluginBase):
model = Tile
name = _('Medium Tile Plugin')
render_template = 'tiles_plugin/med_tile.html'
allow_children = True
def render(self, context, instance, placeholder):
context['instance'] = instance
return context
class SmallTilePlugin(CMSPluginBase):
model = Tile
name = _('Small Tile Plugin')
render_template = 'tiles_plugin/small_tile.html'
allow_children = True
def render(self, context, instance, placeholder):
context['instance'] = instance
return context
plugin_pool.register_plugin(BigTilePlugin)
plugin_pool.register_plugin(MedTilePlugin)
plugin_pool.register_plugin(SmallTilePlugin)
and then I have the templates:
big_tile.html
{% load cms_tags %}
<div class="big-tile">
<div class="content">
{% render_placeholder instance.text %}
</div>
<div class="link">
{% render_placeholder instance.link %}
</div>
<div class="img">
{% render_placeholder instance.img %}
</div>
</div>
And here it comes the problem, when I create the plugin and i insert inside the text/picture/link plugins, these are not populated so basically everything is empty, it's like the javascript is not populating it (for sure it's not the javascript) but I think I'm missing the relationship with the child_plugins. Can anyone help me out?
Thanks
EDIT
This made it work properly:
{% for plugin in instance.child_plugin_instances %}
{% render_plugin plugin %}
{% endfor %}
Thanks to @mfcovington
It looks like almost everything is right. However, to get
text
, for example, you need to useinstance.tile.text
instead ofinstance.text
.So, your template should look something like this:
Alternatively, when you set the context, you could set
context['tile']
:This would allow you to use
tile.text
, etc. instead ofinstance.tile.text
, etc. in your template.EDIT:
In case you are interested, besides your model info, there are lots of other things contained within
instance
. For example, in one of mycms_plugins.py
files I addedprint(dir(instance))
within a CMSPlugin for a model calledcarousel
and got the following output to my terminal (it will, of course differ from yours, but most things will be in common):