7 lines
275 B
HTML
7 lines
275 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
|
||
|
|
<option value="">-선택-</option>
|
||
|
|
<th:block th:each="info:${managerList}">
|
||
|
|
<option th:value="${info.user_seq}" th:text="${info.user_name}"></option>
|
||
|
|
</th:block>
|
||
|
|
</html>
|