source: src/main/resources/templates/workers.html@ 01a1ca6

Last change on this file since 01a1ca6 was a9ffccd, checked in by DenicaKj <dkorvezir@…>, 22 months ago

Login Header

  • Property mode set to 100644
File size: 897 bytes
Line 
1<div xmlns:th="http://www.thymeleaf.org">
2 <h1 style="color: white">Вработени</h1>
3 <div style="color: white" class="container mb-4">
4 <div class="row">
5 <div class="col-12" >
6 <div style="color: white" class="table-responsive">
7 <table style="color: white" class="table table-striped">
8 <thead>
9 <tr>
10 <th scope="col">Име</th>
11 <th scope="col">Презиме</th>
12 <th scope="col">Работна Позиција</th>
13
14 </tr>
15 </thead>
16 <tbody>
17 <tr th:each="w : ${workers}" class="workers">
18 <td th:text="${w.first_name}"></td>
19 <td th:text="${w.last_name}"></td>
20 <td th:text="${w.position}"></td>
21 </tr>
22 </tbody>
23 </table>
24 </div>
25 </div>
26
27 </div>
28 </div>
29</div>
Note: See TracBrowser for help on using the repository browser.