source: src/main/resources/templates/reportsTotalCouponsByCustomer.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.1 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Купони</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 <th>Id на корисник</th>
23 <th>Username</th>
24 <th>Сума</th>
25
26
27 </thead>
28 <tbody>
29 <tr th:each ="res: ${report}" itemscope="row">
30 <td th:text = "${res.getUserId()}"></td>
31 <td th:text = "${res.getUserName()}"> </td>
32 <td th:text = "${res.getTotalSum()}"></td>
33 </tr>
34 </tbody>
35</table>
36</body>
37</html>
Note: See TracBrowser for help on using the repository browser.