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.

orderid.html.twig 567B

1234567891011121314151617181920212223
  1. {% extends "base.html.twig" %} {% block main %}
  2. <a href="/order/' . $args['id'] . '/create">Add orderline</a>
  3. <h1>ORDER DETAILS FOR ORDER . $a['reference'] .</h1>
  4. <hr />
  5. <table>
  6. while ($row = $res->fetchArray(SQLITE3_ASSOC)) { // maak hier een deftige
  7. tabel van
  8. <tr>
  9. <td>
  10. . . $row['id'] . . $row["itemnumber"] . . $row['name'] . . $row['qty'] . .
  11. $row['subtotal'] . . $row['vat'] . . $row['total'] .
  12. </td>
  13. </tr>
  14. }
  15. </table>
  16. <hr />
  17. <a href="/customers">Back to customer list</a>
  18. <a href="/orders">Back to order list</a>
  19. {% endblock %}