15 lines
837 B
HTML
15 lines
837 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
|
||
|
|
<div class="row my-1 infoRow" th:id="|row${info.infoSeq}|">
|
||
|
|
<input type="hidden" class="infoSeq resultInfoSeq" th:name="${#strings.concat('resultInfoList[', info.infoSeq,'].infoSeq')}" th:value="${info.infoSeq}">
|
||
|
|
<div class="col-1">
|
||
|
|
<button type="button" class="btn btn-sm btn-outline-danger rowDeleteBtn"><i class="bi bi-x"></i></button>
|
||
|
|
<span class="infoSeq" th:text="${info.infoSeq+1}"></span>
|
||
|
|
</div>
|
||
|
|
<div class="col-4">
|
||
|
|
<input type="text" class="form-control form-control-sm" th:name="${#strings.concat('resultInfoList[', info.infoSeq,'].contactTarget')}">
|
||
|
|
</div>
|
||
|
|
<div class="col-7">
|
||
|
|
<textarea th:id="|contactInfo${info.infoSeq}|" th:name="${#strings.concat('resultInfoList[', info.infoSeq,'].contactInfo')}"></textarea>
|
||
|
|
</div>
|
||
|
|
</div>
|