HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/hyperflight/apps/inxpress/prev/2025-11-04/templates/partials/order_items.html
{% if not items %}
  <div class="alert alert-warning mb-0">
    No line items found for order <strong>{{ order_no }}</strong>.
  </div>
{% else %}
  <div class="mb-2">
    <div class="fw-semibold">Order {{ order_no }} – items</div>
  </div>

  <div class="table-responsive">
    <table class="table table-sm mb-0">
      <thead>
        <tr>
          <th class="text-end">ID</th>
          <th>Code</th>
          <th>Name</th>
          <th>Options</th>
          <th class="text-end">Qty</th>
          <th class="text-end">Price (£)</th>
          <th class="text-end">Line total (£)</th>
        </tr>
      </thead>
      <tbody>
        {% for it in items %}
          <tr>
            <td class="text-end">{{ it.OrderDetailID }}</td>
            <td>{{ it.ProductCode }}</td>
            <td>{{ it.ProductName }}</td>
            <td class="small">{{ it.OptionsList }}</td>
            <td class="text-end">{{ it.Qty }}</td>
            <td class="text-end">{{ it.PriceEach|blank_if_zero }}</td>
            <td class="text-end">{{ it.LineTotal|blank_if_zero }}</td>
          </tr>
        {% endfor %}
      </tbody>
    </table>
  </div>
{% endif %}