|
<!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.title_cd} ${info.user_nm}|"></option>
|
|
</th:block>
|
|
</html> |