Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 301 Bytes

File metadata and controls

11 lines (10 loc) · 301 Bytes

How to Conditionally Render Child Plugins

    {% for plugin_instance in instance.child_plugin_instances %}
      {% if plugin_instance.plugin_type == 'LinkPlugin' %}
        <a href="{{ link }}" <!-- ... -->>
          <!-- ... -->
        </a>
      {% endif %}
    {% endfor %}