{% load cms_tags sekizai_tags staticfiles i18n %}
Objects pass by context
instance: {{ instance }}
placeholder: {{ placeholder }}
{% if instance.title %}
title: {{ instance.title }}
{% endif %}
{% if instance.template_name %}
template: {{ instance.template_name }}
{% endif %}
{% if instance.description %}
description: {{ instance.description }}
{% endif %}
{% if instance.image %}
image: {{ instance.image }}
{% endif %}
{% if instance.cta_label %}
call to action label: {{ instance.cta_label }}
{% endif %}
{% if instance.cta_link %}
call to action link: {{ instance.cta_link }}
{% endif %}
{% for child in instance.child_plugin_instances %}
{{ child.title }}
{% endfor %}