kcgFileManager/src/main/resources/templates/board/contentLog.html

28 lines
781 B
HTML

<!DOCTYPE html>
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
<div class="p-3">
<div class="row-cols-6 overflow-auto">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>행동</th>
<th>내용</th>
<th>사용자</th>
<th>발생일시</th>
</tr>
</thead>
<tbody>
<th:block th:each="log:${logList}">
<tr>
<td th:text="${log.logSeq}"></td>
<td th:text="${statusMap.get(log.logStatus)}"></td>
<td th:text="${log.description}"></td>
<td th:text="${log.createName}"></td>
<td th:text="${#temporals.format(log.createDate, 'yyyy-MM-dd HH:mm:ss')}"></td>
</tr>
</th:block>
</tbody>
</table>
</div>
</div>