examen MVC (model view controller)
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.

1234567891011121314151617181920212223242526
  1. {% extends "base.html.twig" %}
  2. {% block main%}
  3. <a href="/order/{id}/create"> Create Order<a/>
  4. <h1> Order list for {% for customer in CustomerName%}<h1>{{customer.firstname}} {{customer.lastname}}</h1>{% endfor%}</h1>
  5. <hr/>
  6. <table>
  7. <tr>
  8. <th>Reference</th>
  9. <th>Customer ID</th>
  10. <th>Subtotal</th>
  11. <th>VAT</th>
  12. <th>Total</th>
  13. </tr>
  14. {% for customer in customerOrders%}
  15. <tr>
  16. <td><a href="{{customer.reference}}">{{customer.reference}}</td>
  17. <td>{{customer.customerId}}</td>
  18. <td>>{{customer.subtotal}}</td>
  19. <td>>{{customer.vat}}</td>
  20. <td>>{{customer.total}}</td>
  21. </tr>
  22. {% endfor%}
  23. </table>
  24. <hr/>
  25. <a href="/customers">Back to customer list</a> <a href="/orders">Back to order list</a>
  26. {% endblock %}