{% set sidx = loop.index0 %}
{% if step.content_md %}
{{ step.content_md | safe }}
{% endif %} {% set schema = step.config_schema | default({}) %}
⚙ Configuration Panel
{% if schema.fields %} {% for field in schema.fields %}
{% if field.type == 'select' %} {% elif field.type == 'checkbox' %} {% elif field.type == 'checkboxes' %}
{% for opt in field.options | default([]) %} {% endfor %}
{% elif field.type == 'textarea' %} {% else %} {% endif %} {% if field.hint %}
{{ field.hint }}
{% endif %}
{% endfor %} {% else %}

Click Configure to execute this action with default settings.

{% endif %}