source: src/main/resources/templates/workers.html@ 0ba5d1a

Last change on this file since 0ba5d1a was 90317ea, checked in by DenicaKj <dkorvezir@…>, 22 months ago

Events and Event

  • Property mode set to 100644
File size: 834 bytes
RevLine 
[448bd84]1<div xmlns:th="http://www.thymeleaf.org">
[90317ea]2 <h1 style="color: white">Вработени</h1>
[448bd84]3 <div class="container mb-4">
4 <div class="row">
5 <div class="col-12" >
6 <div class="table-responsive">
7 <table class="table table-striped">
8 <thead>
9 <tr>
[f7b0906]10 <th scope="col">Име</th>
11 <th scope="col">Презиме</th>
12 <th scope="col">Работна Позиција</th>
[448bd84]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.