templates/app/CustomizedSolutions/steps_list.html.twig line 1

Open in your IDE?
  1. <div id="step_list">
  2.     <div id="base_step_list_item" class="d-none">
  3.         <p id="base_step_list_item_name" class="ct-blue ff-os-bold m-0">
  4.             <span id="step_name">
  5.                 {{ 'form.type.custom_parts.owner_step_name.label'|trans }} 
  6.             </span>
  7.             <span id="step_number">
  8.             </span>
  9.         </p>
  10.         <p id="base_step_list_item_option" class="ct-blue ff-os-light">
  11.         </p>
  12.     </div>
  13.     {% if orderItem|default(0) %}
  14.         {% for productAttributeItem in orderItem.getPrioritizedProductAttributeItems %}
  15.             <div class="steps-list-item active" id="base_step_list_item_option_{{ productAttributeItem.productAttribute.priority }}" data-option="{{ productAttributeItem.productAttribute.priority }}" data-loaded="{{ productAttributeItem.name }}">
  16.                 <p id="base_step_list_item_name" class="ct-blue ff-os-bold m-0">
  17.                     <span id="step_name">
  18.                         {{ 'form.type.custom_parts.owner_step_name.label'|trans }}
  19.                     </span>
  20.                     <span id="step_number">
  21.                         {{ productAttributeItem.productAttribute.priority }}
  22.                     </span>
  23.                 </p>
  24.                 <p id="base_step_list_item_option" class="ct-blue ff-os-light">
  25.                     {{ productAttributeItem.productAttribute.name }}: {{ productAttributeItem.name }}
  26.                 </p>
  27.             </div>
  28.         {% endfor %}
  29.     {% endif %}
  30. </div>