| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <form class="form_wrap form_full" name="trackWithdrawForm" id="trackWithdrawForm">
- <div class="modal-header">
- <h5 class="modal-title" id="reclaimLabel">
- 회수 조회
- </h5>
- </div>
- <div class="modal-body">
- <div class="pop_cont">
- <!-- 210506_수정 : 테이블 변경 -->
- <div class="tbl type5">
- <table>
- <colgroup>
- <col width="25%">
- <col width="25%">
- <col width="25%">
- <col width="25%">
- </colgroup>
- <thead>
- <tr>
- <th scope="col">시간</th>
- <th scope="col">장소</th>
- <th scope="col">유형</th>
- <th scope="col">전화번호</th>
- </tr>
- </thead>
- <tbody>
- <tr th:if="${sweetTrackerInfoList}" th:each="sweetTrackerInfo, status : ${sweetTrackerInfoList}">
- <td th:text="${sweetTrackerInfo.timeTrans}"></td>
- <td th:text="${sweetTrackerInfo.delvWhere}"></td>
- <td th:text="${sweetTrackerInfo.details}"></td>
- <td th:text="${sweetTrackerInfo.telno}"></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </form>
|