Changed folder structure

This commit is contained in:
2023-09-21 12:37:28 +03:00
parent ac175a6bd2
commit 984304a465
10 changed files with 184 additions and 13 deletions

View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Department List</title>
</head>
<body>
<h1>Department List</h1>
<table>
<thead>
<tr>
<th>Department ID</th>
<th>Name</th>
<th>Group Name</th>
<th>Modified Date</th>
</tr>
</thead>
<tbody>
<tr th:each="department : ${basic}">
<td th:text="${basic.actorName}"></td>
</tr>
</tbody>
</table>
</body>
</html>