TrackWithdrawPopupFormWeb.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <form class="form_wrap form_full" name="trackWithdrawForm" id="trackWithdrawForm">
  2. <div class="modal-header">
  3. <h5 class="modal-title" id="reclaimLabel">
  4. 회수 조회
  5. </h5>
  6. </div>
  7. <div class="modal-body">
  8. <div class="pop_cont">
  9. <!-- 210506_수정 : 테이블 변경 -->
  10. <div class="tbl type5">
  11. <table>
  12. <colgroup>
  13. <col width="25%">
  14. <col width="25%">
  15. <col width="25%">
  16. <col width="25%">
  17. </colgroup>
  18. <thead>
  19. <tr>
  20. <th scope="col">시간</th>
  21. <th scope="col">장소</th>
  22. <th scope="col">유형</th>
  23. <th scope="col">전화번호</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. <tr th:if="${sweetTrackerInfoList}" th:each="sweetTrackerInfo, status : ${sweetTrackerInfoList}">
  28. <td th:text="${sweetTrackerInfo.timeTrans}"></td>
  29. <td th:text="${sweetTrackerInfo.delvWhere}"></td>
  30. <td th:text="${sweetTrackerInfo.details}"></td>
  31. <td th:text="${sweetTrackerInfo.telno}"></td>
  32. </tr>
  33. </tbody>
  34. </table>
  35. </div>
  36. </div>
  37. </div>
  38. </form>