modules/XC/CrispWhiteSkin/templates/web/customer/modules/QSL/Make/product_fitment/body.twig line 1

Open in your IDE?
  1. {##
  2.  # Product fitment info
  3.  #}
  4. {% apply spaceless %}
  5.   <div class="product-fitment {{ this.getProductFitmentClass() }}">
  6.     {% if this.showProductFitmentIcon() %}
  7.       {{ widget('XLite\\View\\Icon', icon=this.getProductFitmentIcon(), class='product-fitment__checkbox-icon') }}
  8.     {% endif %}
  9.     <span class="product-fitment__label">{{ this.getProductFitmentLabel()|raw }}</span>
  10.     {% if this.isNeedShowCheckPartsFitsYourVehicle() %}
  11.       <div class="product_vehicle_mmys_popup">
  12.         {{ t('Check if this part fits your vehicle.') }}
  13.       </div>
  14.     {% endif %}
  15.   </div>
  16.   {% if this.getProductFitmentNote() and this.showProductFitmentNote() %}
  17.     <div class="fitment-note">
  18.       <div>{{ widget('XLite\\View\\Icon', icon=this.getFitmentNoteIcon(), class='product-fitment__fitment-note-icon') }}</div>
  19.       <div>{{ this.getProductFitmentNote()|raw }}</div>
  20.     </div>
  21.   {% endif %}
  22. {% endapply %}