Ого, вау еще и 5 сдал
This commit is contained in:
parent
d427d1eaa3
commit
3e575845d6
37
src/main/resources/templates/report.html
Normal file
37
src/main/resources/templates/report.html
Normal file
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"
|
||||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||||
layout:decorate="~{default}">
|
||||
<body>
|
||||
<div layout:fragment="content">
|
||||
<h1 class="text-center mb-4">Report</h1>
|
||||
<div>
|
||||
<a class="btn btn-secondary button-fixed" th:href="@{/group}">
|
||||
Назад
|
||||
</a>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">Группа</th>
|
||||
<th scope="col">Студенты</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr th:each="report, iterator: ${report}">
|
||||
<td th:text="${report.key}"/>
|
||||
<td>
|
||||
<ul>
|
||||
<li th:each="value : ${report.value}">
|
||||
<span style="text-decoration: none" th:text="${value}"></span>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user