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.

ordercreate.html.twig 463B

12345678910111213141516
  1. <html>
  2. <body>
  3. <h1>Create orderline for {{ order.reference }}</h1>
  4. <hr />
  5. <form action="/order/{{ args }}/create" method="post">
  6. <label for="id">product: </label>
  7. <input type="text" name="id" />
  8. <label for="qty">qty: </label>
  9. <input type="text" name="qty" />
  10. <input type="submit" />
  11. </form>
  12. <hr />
  13. <a href="/customers">Back to customer list</a>
  14. <a href="/orders">Back to order list</a>
  15. </body>
  16. </html>