Ignore:
Timestamp:
01/06/23 21:08:03 (18 months ago)
Author:
andrejtodorovski <82031894+andrejtodorovski@…>
Branches:
main
Children:
89865ae
Parents:
9dcbf44
Message:

Added all advanced reports, added bootstrap for every template

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/templates/viewUsers.html

    r9dcbf44 rcab5859  
    11<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">
    49    <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>
    914    </tr>
    1015    </thead>
     
    1621      <td>
    1722        <form method="post" th:action="@{'/approve/{id}' (id=${user.getId()}) }">
    18           <button type="submit">Approve</button>
     23          <button type="submit">Одобри</button>
    1924        </form>
    2025      </td>
     
    2227    </tbody>
    2328  </table>
     29  </div>
    2430</div>
Note: See TracChangeset for help on using the changeset viewer.