main
Last change
on this file was 4d67d70, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Final touches
|
-
Property mode
set to
100644
|
File size:
714 bytes
|
Rev | Line | |
---|
[cab5859] | 1 | <div>
|
---|
| 2 | <h3 class="mt-3 mb-3">Извештај за сите категории и за кој прозиводител на коли биле купени највеќе делови од таа категорија</h3>
|
---|
| 3 | <table class="table table-bordered mt-3">
|
---|
| 4 | <thead class="thead-dark">
|
---|
| 5 | <tr>
|
---|
| 6 | <th scope="col">Категорија</th>
|
---|
| 7 | <th scope="col">Производител на кола</th>
|
---|
| 8 | <th scope="col">Број на делови</th>
|
---|
| 9 | </tr>
|
---|
| 10 | </thead>
|
---|
| 11 | <tbody>
|
---|
| 12 | <tr th:each="d : ${data}">
|
---|
[4d67d70] | 13 | <td th:text="${d.getCname()}"></td>
|
---|
[cab5859] | 14 | <td th:text="${d.getCmname()}"></td>
|
---|
| 15 | <td th:text="${d.getPartsordered()}"></td>
|
---|
| 16 | </tr>
|
---|
| 17 | </tbody>
|
---|
| 18 | </table>
|
---|
| 19 | </div> |
---|
Note:
See
TracBrowser
for help on using the repository browser.