source: src/main/resources/templates/partManufacturersReport.html@ cab5859

main
Last change on this file since cab5859 was cab5859, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 18 months ago

Added all advanced reports, added bootstrap for every template

  • Property mode set to 100644
File size: 973 bytes
Line 
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 <th scope="col">Трета четвртина</th>
10 <th scope="col">Четврта четвртина</th>
11 </tr>
12 </thead>
13 <tbody>
14 <tr th:each="d : ${data}">
15 <td th:text="${d.getPmname}"></td>
16 <td th:text="${d.getPrva()}"></td>
17 <td th:text="${d.getVtora()}"></td>
18 <td th:text="${d.getTreta()}"></td>
19 <td th:text="${d.getCetvrta()}"></td>
20 </tr>
21 </tbody>
22 </table>
23</div>
Note: See TracBrowser for help on using the repository browser.