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.

ordersargs.html.twig 330B

12345678910111213
  1. {% extends "base.html.twig" %} {% block main %}
  2. <h1>ORDERS LIST FOR {{orders.firstname}} {{orders.lastname}}</h1>
  3. <hr />
  4. <table>
  5. {% for orders in orders %}
  6. <tr>
  7. <td><a href=\"/order/{{orders.id}}">{{orders.reference}}</a> {{orders.subtotal}} {{orders.vat}} {{orders.total}}</td>
  8. </tr>
  9. {% endfor %}
  10. </table>
  11. {% endblock %}