main
Last change
on this file since 2efe93e was 5b447b0, checked in by Test <matonikolov77@…>, 3 years ago |
Adding models and resources
|
-
Property mode
set to
100644
|
File size:
585 bytes
|
Rev | Line | |
---|
[5b447b0] | 1 | <div class="container mb-4">
|
---|
| 2 | <div class="row">
|
---|
| 3 | <div class="col-12">
|
---|
| 4 | <div class="table-responsive">
|
---|
| 5 | <table class="table table-striped">
|
---|
| 6 | <thead>
|
---|
| 7 | <tr>
|
---|
| 8 | <th scope="col">Име</th>
|
---|
| 9 | <th scope="col">Лајкови</th>
|
---|
| 10 | </tr>
|
---|
| 11 | </thead>
|
---|
| 12 | <tbody>
|
---|
| 13 | <tr th:each="genre : ${genres}" class="elements">
|
---|
| 14 | <td th:text="${genre.getName()}"></td>
|
---|
| 15 | <td th:text="${genre.getLikes()}"></td>
|
---|
| 16 |
|
---|
| 17 | </tr>
|
---|
| 18 | </tbody>
|
---|
| 19 | </table>
|
---|
| 20 | </div>
|
---|
| 21 | </div>
|
---|
| 22 | </div>
|
---|
| 23 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.