{# Shared Control Plane UI macros: bubble help + next-step guide. #} {% macro help_bubble(text, label='Help') -%} {{ text }} {%- endmacro %} {% macro render_next_steps(steps, title='What to do next') -%} {% if steps %}
Guided steps

{{ title }}

    {% for s in steps %}
  1. {% if s.priority == 'recommended' %}Next {% elif s.priority == 'optional' %}Optional {% else %}Status{% endif %}

    {{ s.title }}

    {{ s.body }}

    {% if s.href and s.cta %} {{ s.cta }} {% elif s.section and s.cta %} {{ s.cta }} {% endif %}
  2. {% endfor %}
{% endif %} {%- endmacro %} {% macro lifecycle_checklist(items) -%} {% if items %} {% endif %} {%- endmacro %}