app/Plugin/Coupon42/Resource/template/default/coupon_shopping_item_confirm.twig line 1

Open in your IDE?
  1. {#
  2.  This file is part of the Coupon plugin
  3.  Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4.  http://www.ec-cube.co.jp/
  5.  For the full copyright and license information, please view the LICENSE
  6.  file that was distributed with this source code.
  7. #}
  8. <script type="text/javascript">
  9.     $(function () {
  10.         // append to layout
  11.         $(".ec-orderPayment").last().after($("#coupon").detach());
  12.     })
  13. </script>
  14. <div id="coupon" class="ec-orderCoupon">
  15.     <div class="ec-rectHeading">
  16.         <h2>{{ 'plugin_coupon.front.shopping.header'|trans }}</h2>
  17.     </div>
  18.     <div id="customer_detail_box" class="column is-edit">
  19.         {% if CouponOrder %}
  20.             <strong class="ec-color-red">{{ 'plugin_coupon.front.shopping.message.use_code'|trans({'%code%': CouponOrder.coupon_cd }) }}</strong>
  21.         {% else %}
  22.             {{ 'plugin_coupon.front.shopping.message.empty'|trans }}
  23.         {% endif %}
  24.     </div>
  25. </div>