1
|
<!DOCTYPE html>
|
2
|
|
3
|
<html
|
4
|
xmlns:th="http://www.thymeleaf.org"
|
5
|
lang="cs"
|
6
|
>
|
7
|
<head th:replace="fragments/headers :: head(~{::title})">
|
8
|
<title>Title</title>
|
9
|
</head>
|
10
|
<body>
|
11
|
<nav th:replace="fragments/headers :: nav"></nav>
|
12
|
<div th:text="${message}"></div>
|
13
|
<table>
|
14
|
<tr th:each="contingencyTableRow : ${contingencyTableRows}">
|
15
|
<div th:if="${contingencyTableRow.isHeader()}">
|
16
|
<th th:each="contingencyTableRowCell : ${contingencyTableRow.getCells()}">
|
17
|
<span th:text="${contingencyTableRowCell.getValue()}"></span>
|
18
|
</th>
|
19
|
</div>
|
20
|
<div th:unless="${contingencyTableRow.isHeader()}">
|
21
|
<td th:each="contingencyTableRowCell : ${contingencyTableRow.getCells()}">
|
22
|
<span th:text="${contingencyTableRowCell.getValue()}"></span>
|
23
|
</td>
|
24
|
</div>
|
25
|
</tr>
|
26
|
</table>
|
27
|
</body>
|
28
|
</html>
|