FAISP/src/main/resources/templates/equip/cellPhoneSelecBox.html

7 lines
292 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
<option value="">-선택-</option>
<th:block th:each="info:${managerList}">
2022-11-01 08:57:20 +00:00
<option th:value="${info.user_seq}" th:text="|${info.title_cd} ${info.user_nm}|"></option>
</th:block>
</html>