source: src/main/resources/templates/reportsFranchizeEarningsBySalePlace.html@ 8d11f8c

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

code added, trial 2

  • Property mode set to 100644
File size: 1.2 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Promet franshiza</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>Име франшиза</th>
24 <th>Име продажно место</th>
25 <th>Промет</th>
26 </tr>
27 </thead>
28 <tbody>
29 <tr th:each ="res: ${report}" itemscope="row">
30 <td th:text = "${res.getFranchizeName()}"></td>
31 <td th:text = "${res.getSalePlaceName()}"> </td>
32 <td th:text = "${res.getTotalSold()}"></td>
33
34
35 </tr>
36 </tbody>
37</table>
38</body>
39</html>
Note: See TracBrowser for help on using the repository browser.