feat: add DDS protection status dashboard

This commit is contained in:
devmrko
2026-06-30 20:31:31 +09:00
parent 2f67587b40
commit 1766696ab4
21 changed files with 637 additions and 123 deletions

View File

@@ -0,0 +1,26 @@
<!doctype html>
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
<body>
<div th:fragment="directComparison" class="table-responsive">
<table class="table table-sm align-middle protection-direct-table">
<thead><tr><th>검증 프로필</th><th>보호 상태</th><th>권한 반영</th><th>검색 검증</th><th>조치</th></tr></thead>
<tbody>
<tr th:each="status : ${directPaths}">
<td>
<strong th:text="${status.subjectLabel()}">검증 프로필</strong>
<small th:text="${status.objectName()}">보호 객체</small>
</td>
<td>
<span class="protection-table-badge" th:classappend="${' tone-' + status.primaryTone()}"
th:text="${status.primaryLabel()}">재검증 필요</span>
<small th:text="${status.primaryDescription()}">설명</small>
</td>
<td><strong th:text="${status.synchronizationLabel()}">선언 관측</strong><small th:text="${status.synchronizationDetail()}">설명</small></td>
<td><strong th:text="${status.verificationLabel()}">검증 기록 없음</strong><small th:text="${status.verificationDetail()}">설명</small></td>
<td><a class="btn btn-sm rw-btn-secondary" th:href="${status.actionHref()}" th:text="${status.actionLabel()}">실행</a></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>