Changeset cab5859 for src/main/resources/templates/viewUsers.html
- Timestamp:
- 01/06/23 21:08:03 (23 months ago)
- Branches:
- main
- Children:
- 89865ae
- Parents:
- 9dcbf44
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/viewUsers.html
r9dcbf44 rcab5859 1 1 <div> 2 <table> 3 <thead> 2 <div th:if="${hasError}"> 3 <h1>Нема корисници за одобрување</h1> 4 </div> 5 <div th:if="${!hasError}"> 6 <h1 class="mt-3 mb-3">Корисници за одобрување</h1> 7 <table class="table table-bordered"> 8 <thead class="thead-dark"> 4 9 <tr> 5 <th> Name</th>6 <th> Username</th>7 <th> Role</th>8 <th> Approve</th>10 <th>Име</th> 11 <th>Корисничко име</th> 12 <th>Улога</th> 13 <th>Одобри</th> 9 14 </tr> 10 15 </thead> … … 16 21 <td> 17 22 <form method="post" th:action="@{'/approve/{id}' (id=${user.getId()}) }"> 18 <button type="submit"> Approve</button>23 <button type="submit">Одобри</button> 19 24 </form> 20 25 </td> … … 22 27 </tbody> 23 28 </table> 29 </div> 24 30 </div>
Note:
See TracChangeset
for help on using the changeset viewer.