Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <table class="striped">
- <thead>
- <tr>
- <th>ID</th>
- <th>Nome</th>
- <th>Sobrenome</th>
- <th>Currículo</th>
- <th>Editar</th>
- <th>Excluir</th>
- </tr>
- </thead>
- <tr th:each = "pessoa : ${pessoas}">
- <td th:text = "${pessoa.id}"></td>
- <td><a th:href="@{/telefones/{idPessoa}(idPessoa=${pessoa.id})}"><span th:text = "${pessoa.nome}"></span></a></td>
- <td th:text = "${pessoa.sobrenome}"></td>
- <td>
- <a th:if="${pessoa.curriculo != null}" th:href="@{/baixarcurriculo/{idPessoa}(idPessoa=${pessoa.id})}">Download</a>
- <a th:if="${pessoa.curriculo == null}" style="color: red;">Não existe</a>
- </td>
- <td><a th:href="@{/editarpessoa/{idPessoa}(idPessoa=${pessoa.id})}">Editar</a></td>
- <td><a th:href="@{/removerpessoa/{idPessoa}(idPessoa=${pessoa.id})}">Excluir</a></td>
- </tr>
- </table>
- <div class="row" style="margin-top: 30px;">
- <center>
- <div th:if="${pessoas != null}">
- <span th:if="${pessoas.hasPrevious()}">
- <a th:href="@{/pessoaspag(page=${pessoas.number-1}, size=${pessoas.size}, nomepesquisa=${nomepesquisa})}">Anterior</a>
- </span>
- <th:block th:each="i: ${#numbers.sequence(0, pessoas.totalPages - 1)}">
- <a th:href="@{/pessoaspag(page=${i}, size=${pessoas.size}, nomepesquisa=${nomepesquisa})}">[[ ${i} + 1 ]]</a>
- </th:block>
- <span th:if="${pessoas.hasNext()}">
- <a th:href="@{/pessoaspag(page=${pessoas.number+1}, size=${pessoas.size}, nomepesquisa=${nomepesquisa})}">Próximo</a>
- </span>
- </div>
- </center>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement