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.

ordersclient.html.twig 660B

12345678910111213141516171819202122
  1. {% extends "base.html.twig" %} {% block main %}
  2. <a href="/orders/' . $args['client'] . '/create">Create order</a>'
  3. <h1>ORDERS LIST FOR CLIENT . $a['firstname'] . . $a['lastname'] .</h1>
  4. <hr />
  5. <table>
  6. " else // alle klanten
  7. <h1>ORDERS LIST FOR ALL CLIENTS</h1>
  8. <hr />
  9. <table></table>
  10. </table>
  11. while ($row = $res->fetchArray(SQLITE3_ASSOC)) {
  12. // maak hier een deftige tabel van
  13. <tr><td> . <a href=\"/order/" . $row['id'] . "\"> . $row["reference"] . </a> . $row['subtotal'] . . $row['vat'] . . $row['total'] . </td></tr>
  14. }
  15. </table>
  16. <hr/>
  17. <a href="/customers">Back to customer list</a> <a href="/orders">Back to order list</a>
  18. {% endblock %}