Last change
on this file since 64ee7f4 was f7b0906, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago |
update workers.html
|
-
Property mode
set to
100644
|
File size:
938 bytes
|
Rev | Line | |
---|
[448bd84] | 1 | <div xmlns:th="http://www.thymeleaf.org">
|
---|
| 2 | <section class="jumbotron text-center">
|
---|
| 3 | <div class="container">
|
---|
[f7b0906] | 4 | <h1 class="jumbotron-heading">Вработени</h1>
|
---|
[448bd84] | 5 | </div>
|
---|
| 6 | </section>
|
---|
| 7 |
|
---|
| 8 | <div class="container mb-4">
|
---|
| 9 | <div class="row">
|
---|
| 10 | <div class="col-12" >
|
---|
| 11 | <div class="table-responsive">
|
---|
| 12 | <table class="table table-striped">
|
---|
| 13 | <thead>
|
---|
| 14 | <tr>
|
---|
[f7b0906] | 15 | <th scope="col">Име</th>
|
---|
| 16 | <th scope="col">Презиме</th>
|
---|
| 17 | <th scope="col">Работна Позиција</th>
|
---|
[448bd84] | 18 |
|
---|
| 19 | </tr>
|
---|
| 20 | </thead>
|
---|
| 21 | <tbody>
|
---|
| 22 | <tr th:each="w : ${workers}" class="workers">
|
---|
| 23 | <td th:text="${w.first_name}"></td>
|
---|
| 24 | <td th:text="${w.last_name}"></td>
|
---|
| 25 | <td th:text="${w.position}"></td>
|
---|
| 26 | </tr>
|
---|
| 27 | </tbody>
|
---|
| 28 | </table>
|
---|
| 29 | </div>
|
---|
| 30 | </div>
|
---|
| 31 |
|
---|
| 32 | </div>
|
---|
| 33 | </div>
|
---|
| 34 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.