24 lines
549 B
HTML
24 lines
549 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<input type="checkbox" id="allValueCheckBox">
|
|
</th>
|
|
<th>값</th>
|
|
<th>설명</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="valueTr" th:each="commonCode:${valueList}">
|
|
<td>
|
|
<input type="checkbox" class="valueCheckBox" th:value="${commonCode.codeSq}">
|
|
</td>
|
|
<td th:text="${commonCode.value}"></td>
|
|
<td th:text="${commonCode.description}"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</html> |