PlanningCouponDetailFormWeb.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html lang="ko" xmlns:th="http://www.thymeleaf.org">
  3. <!--
  4. *******************************************************************************
  5. * @source : PlanningCouponDetailFormWeb.html
  6. * @desc : 기획전 쿠폰 사용안내 모달
  7. *============================================================================
  8. * STYLE24
  9. * Copyright(C) 2020 TSIT, All rights reserved.
  10. *============================================================================
  11. * VER DATE AUTHOR DESCRIPTION
  12. * === =========== ========== =============================================
  13. * 1.0 2021.04.01 sowon 최초 작성
  14. *******************************************************************************
  15. -->
  16. <div class="modal-header">
  17. <h5 class="modal-title" id="couponInfoLabel" th:text="${couponDetailInfo.cpnNm}"></h5>
  18. </div>
  19. <div class="modal-body">
  20. <div class="pop_cont">
  21. <dl>
  22. <div th:if="${couponDetailInfo.useCondition!=null && couponDetailInfo.useCondition!=''}">
  23. <dt>사용조건</dt>
  24. <dd th:text="${couponDetailInfo.useCondition}"></dd>
  25. </div>
  26. <div>
  27. <dt>발급수량</dt>
  28. <dd th:if="${couponDetailInfo.issueCondition!=null && couponDetailInfo.issueCondition!=''}"th:text="${couponDetailInfo.issueCondition}"></dd>
  29. <dd th:unless="${couponDetailInfo.issueCondition!=null && couponDetailInfo.issueCondition!=''}">제한없음</dd>
  30. </div>
  31. <div>
  32. <dt>유효기간</dt>
  33. <dd>
  34. <span th:text="${couponDetailInfo.availStdt}"></span>&nbsp;~&nbsp;<span th:text="${couponDetailInfo.availEddt}"></span>
  35. </dd>
  36. </div>
  37. <div th:if="${couponDetailInfo.tgtCondition!=null}">
  38. <dt>대상조건</dt>
  39. <dd th:text="${couponDetailInfo.tgtCondition}">
  40. </dd>
  41. </div>
  42. </dl>
  43. </div>
  44. </div>