40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
|
|
|
|
<div class="modal-header bg-dark">
|
|
<h5 class="modal-title text-white" id="menuEditModalLabel" th:text="|${organNm} 취약지 상세|"></h5>
|
|
<button type="button" class="btn-close f-invert" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<table class="table table-sm table-hover table-bordered" id="categoryTable">
|
|
<thead>
|
|
<tr>
|
|
<th>취약지명</th>
|
|
<th>취약등급</th>
|
|
<th>작성자</th>
|
|
<th>작성일/수정일</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="table-group-divider">
|
|
<tr th:each="info:${vulnInfoList}">
|
|
<td id="viewModal" style="color: blue; cursor:pointer;" th:data-vulnKey="${info.vulnKey}" th:text="${info.vulnNm}"></td>
|
|
<td th:text="${info.vulnType}"></td>
|
|
<td th:text="|${info.wrtTitle} ${info.wrtNm}|"></td>
|
|
<td
|
|
th:text="${#temporals.format(info.wrtDt, 'yyyy-MM-dd HH:mm')}"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer justify-content-between bg-light">
|
|
<div class="col-auto">
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">닫기</button>
|
|
</div>
|
|
</div>
|
|
</html> |