<div id="step_list">
<div id="base_step_list_item" class="d-none">
<p id="base_step_list_item_name" class="ct-blue ff-os-bold m-0">
<span id="step_name">
{{ 'form.type.custom_parts.owner_step_name.label'|trans }}
</span>
<span id="step_number">
</span>
</p>
<p id="base_step_list_item_option" class="ct-blue ff-os-light">
</p>
</div>
{% if orderItem|default(0) %}
{% for productAttributeItem in orderItem.getPrioritizedProductAttributeItems %}
<div class="steps-list-item active" id="base_step_list_item_option_{{ productAttributeItem.productAttribute.priority }}" data-option="{{ productAttributeItem.productAttribute.priority }}" data-loaded="{{ productAttributeItem.name }}">
<p id="base_step_list_item_name" class="ct-blue ff-os-bold m-0">
<span id="step_name">
{{ 'form.type.custom_parts.owner_step_name.label'|trans }}
</span>
<span id="step_number">
{{ productAttributeItem.productAttribute.priority }}
</span>
</p>
<p id="base_step_list_item_option" class="ct-blue ff-os-light">
{{ productAttributeItem.productAttribute.name }}: {{ productAttributeItem.name }}
</p>
</div>
{% endfor %}
{% endif %}
</div>