calculaotr plugin allows child promo and html plugin

This commit is contained in:
Arvind Tiwari 2018-03-23 03:22:29 +05:30
commit 3484b75d8b
3 changed files with 18 additions and 8 deletions

View file

@ -12,9 +12,9 @@
</div>
</div>
{% endif %}
{% if children_to_left|length %}
{% if children_to_content|length %}
<div class="split-subsection">
{% for plugin in children_to_left %}
{% for plugin in children_to_content %}
{% render_plugin plugin %}
{% endfor %}
</div>

View file

@ -2,14 +2,14 @@
<section class="split-section {{ instance.get_extra_classes }}" id="{{ instance.html_id }}">
<div class="container">
{% if children_to_right|length %}
{% if children_to_side|length %}
<div class="row">
<div class="col-sm-6 {% if instance.text_direction == 'right' %}col-sm-push-6{% endif %} split-text">
{% include "datacenterlight/cms/includes/_section_split_content.html" %}
</div>
<div class="col-sm-6 {% if instance.text_direction == 'right' %}col-sm-pull-6{% endif %} split-figure">
<div class="section-figure">
{% for plugin in children_to_right %}
{% for plugin in children_to_side %}
{% render_plugin plugin %}
{% endfor %}
</div>