source: src/main/resources/templates/saleplaces.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
RevLine 
[8d11f8c]1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>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
19
20<h1 class="display-4" style="margin-left:15px; font-size: 33px;">Продажни места</h1>
21<br/>
22<table class="table">
23 <tbody>
24 <tr th:each="salePlace : ${salePlaces}">
25 <td>
26 <a th:href="@{'/salePlace/{id}'(id = ${salePlace.getSalePalceId()})}"
27 th:text="${salePlace.getSalePlaceName()}"
28 style="font-weight: bolder; text-decoration: none; margin-left: 10px; text-transform: uppercase; color:black;"></a>
29 </td>
30 </tr>
31 </tbody>
32</table>
33
34</body>
35</html>
Note: See TracBrowser for help on using the repository browser.