| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="ko" xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : PlanningCouponDetailFormWeb.html
- * @desc : 기획전 쿠폰 사용안내 모달
- *============================================================================
- * STYLE24
- * Copyright(C) 2020 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.04.01 sowon 최초 작성
- *******************************************************************************
- -->
- <div class="modal-header">
- <h5 class="modal-title" id="couponInfoLabel" th:text="${couponDetailInfo.cpnNm}"></h5>
- </div>
- <div class="modal-body">
- <div class="pop_cont">
- <dl>
- <div th:if="${couponDetailInfo.useCondition!=null && couponDetailInfo.useCondition!=''}">
- <dt>사용조건</dt>
- <dd th:text="${couponDetailInfo.useCondition}"></dd>
- </div>
- <div>
- <dt>발급수량</dt>
- <dd th:if="${couponDetailInfo.issueCondition!=null && couponDetailInfo.issueCondition!=''}"th:text="${couponDetailInfo.issueCondition}"></dd>
- <dd th:unless="${couponDetailInfo.issueCondition!=null && couponDetailInfo.issueCondition!=''}">제한없음</dd>
- </div>
- <div>
- <dt>유효기간</dt>
- <dd>
- <span th:text="${couponDetailInfo.availStdt}"></span> ~ <span th:text="${couponDetailInfo.availEddt}"></span>
- </dd>
- </div>
- <div th:if="${couponDetailInfo.tgtCondition!=null}">
- <dt>대상조건</dt>
- <dd th:text="${couponDetailInfo.tgtCondition}">
- </dd>
- </div>
- </dl>
- </div>
- </div>
|