vendor/shopware/storefront/Resources/views/storefront/page/account/order-history/order-detail-list.html.twig line 1

Open in your IDE?
  1. {% block page_account_order_item_detail_body %}
  2.     {# @deprecated tag:v6.5.0 - class `order-detail-content-body` will be removed, use `order-detail-content-list` instead #}
  3.     <div class="order-detail-content-body order-detail-content-list">
  4.         {% block page_account_order_item_detail_line_items %}
  5.             {% for lineItem in order.nestedLineItems %}
  6.                 {% block page_account_order_item_detail_line_item %}
  7.                     {# @deprecated tag:v6.5.0 - Template `order-detail-list-item.html.twig` is deprecated. Use `storefront/component/line-item/line-item.html.twig` instead. #}
  8.                     {% if feature('v6.5.0.0') %}
  9.                         {% sw_include '@Storefront/storefront/component/line-item/line-item.html.twig' with {
  10.                             displayMode: 'order',
  11.                             showRemoveButton: false
  12.                         } %}
  13.                     {% else %}
  14.                         {% sw_include '@Storefront/storefront/page/account/order-history/order-detail-list-item.html.twig' %}
  15.                     {% endif %}
  16.                 {% endblock %}
  17.             {% endfor %}
  18.         {% endblock %}
  19.     </div>
  20. {% endblock %}