source: src/main/resources/templates/reportsBestPacketsEachSalePlace.html

Last change on this file was 8d11f8c, checked in by jovanmanchev <jovanmanchev3003@…>, 18 months ago

code added, trial 2

  • Property mode set to 100644
File size: 1.5 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Najdobar Paket</title>
6 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
7 integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
8</head>
9<body>
10<nav class="navbar navbar-expand-lg navbar-dark bg-dark" style="height: 55px">
11 <div class="collapse navbar-collapse" id="navbarSupportedContent">
12 <ul class="navbar-nav mr-auto">
13 <li class="nav-item"><a style="color: white; font-weight: bolder; text-decoration: none;"
14 th:href="@{/home}">Врати се назад</a></li>
15 </ul>
16 </div>
17</nav>
18<h1 class="display-4">Најдобри пакети за продажно место</h1>
19<table class="table">
20
21 <thead class="thead-light">
22 <tr>
23 <th scope="col">Продажно место</th>
24 <th scope="col">Id Пакет</th>
25 <th scope="col">Содржи</th>
26 <th scope="col">Вкупно продадени</th>
27 <th scope="col">Вработен кој го додал</th></tr>
28 </thead>
29 <tbody>
30 <tr th:each ="res: ${report}" itemscope="row">
31 <td th:text = "${res.getNamePlace()}"></td>
32 <td th:text = "${res.getPacketId()}"> </td>
33 <td th:text = "${res.getContains()}"></td>
34 <td th:text = "${res.getTotalSold()}"></td>
35 <td th:text = "${res.getEmployeeThatAddedName()}"></td>
36
37 </tr>
38 </tbody>
39</table>
40</body>
41</html>
Note: See TracBrowser for help on using the repository browser.