Changed folder structure
This commit is contained in:
25
src/main/resources/templates/basic-template.jsp
Normal file
25
src/main/resources/templates/basic-template.jsp
Normal 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>
|
||||
Reference in New Issue
Block a user