list.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org"
  3. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  4. layout:decorate="~{layout}">
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>Too Easy</title>
  8. </head>
  9. <body>
  10. <section layout:fragment="main-content">
  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>Nome</th>
  18. <th>Previlégio</th>
  19. <th>Ações</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <tr th:each="user : ${users}">
  24. <td th:text="${user.id}"></td>
  25. <td th:text="${user.nome}"></td>
  26. <td th:text="${user.role}">
  27. sel
  28. </td>
  29. <td>
  30. <a th:href="@{'/user/editar/' + ${user.id}}" type="button" class="btn btn-outline-dark"
  31. title="Editar">
  32. <i class="bi bi-pencil-square"></i>
  33. </a>
  34. <a th:href="@{'/user/remover/' + ${user.id}}" type="button" class="btn btn-outline-dark"
  35. title="Remover">
  36. <i class="bi bi-dash-square"></i>
  37. </a>
  38. </td>
  39. </tr>
  40. </tbody>
  41. </table>
  42. </div>
  43. </section>
  44. </body>
  45. </html>