You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829
  1. {% extends "base.html.twig" %} {% block main %}
  2. <a href="/order/{{ custid }}/create">Add orderline</a>
  3. <h1>ORDER DETAILS FOR ORDER {{ orderdetails.reference }}</h1>
  4. <hr />
  5. <table>
  6. <tr>
  7. <th>id</th>
  8. <th>Itemnumber</th>
  9. <th>Name</th>
  10. <th>Quantity</th>
  11. <th>Subtotal</th>
  12. <th>VAT</th>
  13. <th>Total</th>
  14. </tr>
  15. {% for orderlines in orderlines %}
  16. <tr>
  17. <td>{{ orderlines.id }}</td>
  18. <td>{{ orderlines.itemnumber }}</td>
  19. <td>{{ orderlines.name }}</td>
  20. <td>{{ orderlines.qty }}</td>
  21. <td>{{ orderlines.subtotal }}</td>
  22. <td>{{ orderlines.vat }}</td>
  23. <td>{{ orderlines.total }}</td>
  24. </tr>
  25. {% endfor %}
  26. </table>
  27. <a href="/customers">Back to customer list</a>
  28. <a href="/orders">Back to order list</a>
  29. {% endblock %}