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.

clientcreate.html.twig 311B

12345678910
  1. {% extends "base.html.twig" %} {% block main %}
  2. <h1>Create order for {{ client.firstname }} {{ client.lastname }}</h1>
  3. <hr />
  4. <form action="/orders/{{ args }}/create" method="post">
  5. <label for="id">Reference: </label>
  6. <input type="text" name="reference" />
  7. <input type="submit" />
  8. </form>
  9. {% endblock %}