list.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head th:replace="~{fragments/head :: head}">
  4. <meta charset="UTF-8">
  5. <title>Too Easy</title>
  6. </head>
  7. <body>
  8. <div th:replace="~{layout}">
  9. <div th:fragment="content">
  10. <section>
  11. <div class="container p-4 shadow bg-white rounded">
  12. <h1 class="mb-4" th:text="${titulo}"></h1>
  13. <table class="table table-hover">
  14. <thead>
  15. <tr>
  16. <th>Código</th>
  17. <th>Descrição</th>
  18. <th>Ações</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. <tr th:each="comodity : ${commodities}">
  23. <td th:text="${comodity.id}">0</td>
  24. <td th:text="${comodity.descricao}">0</td>
  25. <td>
  26. <a th:href="@{'/commodity/edit/' + ${comodity.id}}" type="button" class="btn btn-outline-dark"
  27. title="Editar">
  28. <i class="bi bi-pencil-square"></i>
  29. </a>
  30. <a th:href="@{'/commodity/remove/' + ${comodity.id}}" type="button" class="btn btn-outline-dark"
  31. title="Remover">
  32. <i class="bi bi-dash-square"></i>
  33. </a>
  34. </td>
  35. </tr>
  36. </tbody>
  37. </table>
  38. </div>
  39. </section>
  40. </div>
  41. </div>
  42. </body>
  43. </html>