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.

customers.html.twig 862B

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "base.html.twig" %} {% block main %}
  2. <h1>CUSTOMERS LIST</h1>
  3. <hr />
  4. <table>
  5. <tr>
  6. <th>id</th>
  7. <th>First Name</th>
  8. <th>Last Name</th>
  9. <th>Company</th>
  10. <th>VAT Number</th>
  11. <th>Street</th>
  12. <th>Street 2</th>
  13. <th>ZIP Code</th>
  14. <th>City</th>
  15. <th>State</th>
  16. <th>Country</th>
  17. </tr>
  18. {% for customer in customers %}
  19. <tr>
  20. <td>
  21. <a href="/orders/{{ customer.id }}">{{ customer.id }}</a>
  22. </td>
  23. <td>{{ customer.firstname }}</td>
  24. <td>{{ customer.lastname }}</td>
  25. <td>{{ customer.company }}</td>
  26. <td>{{ customer.vatnumber }}</td>
  27. <td>{{ customer.street }}</td>
  28. <td>{{ customer.street2 }}</td>
  29. <td>{{ customer.zipcode }}</td>
  30. <td>{{ customer.city }}</td>
  31. <td>{{ customer.state }}</td>
  32. <td>{{ customer.country }}</td>
  33. </tr>
  34. {% endfor %}
  35. </table>
  36. {% endblock %}