42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
|
||
|
|
|
||
|
|
<div class="modal-header">
|
||
|
|
<h5 class="modal-title" id="menuEditModalLabel"
|
||
|
|
th:text="|${organNm} 취약지 상세|"></h5>
|
||
|
|
<button type="button" class="btn-close" 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-striped" id="categoryTable">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th>취약지명</th>
|
||
|
|
<th>취약등급</th>
|
||
|
|
<th>작성자</th>
|
||
|
|
<th>작성일/수정일</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
<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.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">
|
||
|
|
<div class="col-auto">
|
||
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">닫기</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</html>
|