<ul class="order-products">
  {{#each orders}}
    <li class="order-products__item {{#if supplierDays}}order-products__item--supplier{{/if}} {{#ifCond cancelled '||' returned}}consignment{{/ifCond}}">
      {{#if cancelled}}
        {{> my-account/order-status-message
            iconClass=statusMessage.iconClass
            icon=statusMessage.icon
            message=statusMessage.text
        }}
      {{/if}}
      {{#if returned}}
        {{> my-account/order-status-message
            iconClass=statusMessage.iconClass
            icon=statusMessage.icon
            message=statusMessage.text
        }}
      {{/if}}
      {{#unless supplierDays}}
        {{> my-account/order-product-informations this}}
      {{/unless}}
      {{#if supplierDays}}
        <div class="order__expectation order__expectation--supplier">
          <span class="icon-wrap-info">
            <i class="info-icon fas fa-info-circle"></i>
          </span>
          <span>
            These item(s) will be delivered within {{supplierDays}} days after receiving your order confirmation. Supplier will contact you with additional information
          </span>
        </div>
        {{#each items}}
          {{> my-account/order-product-informations this}}
        {{/each}}
      {{/if}}
    </li>
  {{/each}}
</ul>
