2025-08-16 18:23:35 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html xmlns:th="http://www.thymeleaf.org" lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Appeal Notification</title>
|
|
|
|
|
<style>
|
|
|
|
|
ul {
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h2 th:text="'Appeal by ' + ${appeal.username}">Appeal by Username</h2>
|
|
|
|
|
<p>Punishment information</p>
|
|
|
|
|
<ul>
|
|
|
|
|
<li><strong>Username:</strong> <span th:text="${appeal.username}">username</span></li>
|
|
|
|
|
<li><strong>UUID:</strong> <span th:text="${appeal.uuid}">uuid</span></li>
|
|
|
|
|
<li><strong>Email:</strong> <span th:text="${appeal.email}">email</span></li>
|
2025-08-16 21:40:20 +00:00
|
|
|
<li><strong>Submitted at:</strong> <span th:text="${createdAt}">date</span></li>
|
|
|
|
|
<li><strong>Reason:</strong> <span th:text="${history.reason}">reason</span></li>
|
|
|
|
|
<li><strong>Active:</strong> <span th:text="${active}">unknown</span></li>
|
2025-08-16 18:23:35 +00:00
|
|
|
</ul>
|
|
|
|
|
<h3>Appeal:</h3>
|
|
|
|
|
<p th:text="${appeal.reason}">Reason text</p>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|