app/template/flapshop/Block/customer_rank_info.twig line 1

Open in your IDE?
  1. {#
  2. * Plugin Name : CustomerRank
  3. *
  4. * Copyright (C) BraTech Co., Ltd. All Rights Reserved.
  5. * http://www.bratech.co.jp/
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. #}
  10. {% block stylesheet %}
  11. <style>
  12. #customer_rank {
  13.     width: 100%;
  14.     max-width: 1150px;
  15.     margin: 0 auto;
  16. }
  17. #customer_rank .heading02 {
  18.   background: #f8f8f8;
  19.   padding: 16px;
  20. }
  21. #customer_rank .current-rank {
  22.   font-size: 1rem;
  23.   margin-bottom: 30px;
  24. }
  25. #customer_rank span {
  26.   color: #c0392b;
  27.   font-weight: bold;
  28. }
  29. #customer_rank .rank {
  30.   color: #2981ba;
  31.   font-weight: bold;
  32. }
  33. #customer_rank .next_info {
  34.   background: #f7f7f9;
  35.   padding: 10px 25px;
  36.   border: 1px solid #e1e1e8;
  37. }
  38. #customer_rank .maginright{
  39.         margin-right: auto;
  40.     text-align: end;
  41. }
  42. </style>
  43. {% endblock stylesheet %}
  44. <!--会員ランク表示-->
  45. {% if CurrentCustomerRank or CheckCustomerRank or NextCustomerRank%}
  46. <div id="customer_rank">
  47.     {#<h2 class="heading02">会員ランク情報</h2>#}
  48.     <div class="container-fluid">
  49.         <div class="col-md-12 col-md-offset-1 maginright">
  50.             {% if CurrentCustomerRank %}
  51.             <p class="current-rank">現在のランクは「<span class="rank">{{ CurrentCustomerRank.name }}</span>」です。</p>
  52.             {% endif %}
  53.             {#{% if CheckCustomerRank %}#}
  54.             {#    <p class="next_info">次回更新時のランクは「<span class="rank">{{ CheckCustomerRank.name }}</span>」です。</p>#}
  55.             {#{% endif %}#}
  56.             {#{% if NextCustomerRank %}#}
  57.             {#<div class="next_info">#}
  58.             {#    {% set nextAmount = NextCustomerRank.condAmount - CurrentCondition.total_amount %}#}
  59.             {#    {% if nextAmount > 0 %}#}
  60.             {#        <p>あと <span>{{ nextAmount|number_format() }}円</span></p>#}
  61.             {#    {% endif %}#}
  62.             {#    {% set nextBuytimes = NextCustomerRank.condBuytimes - CurrentCondition.total_buytimes %}#}
  63.             {#    {% if nextBuytimes > 0 %}#}
  64.             {#        <p>あと <span>{{ nextBuytimes|number_format() }}回</span></p>#}
  65.             {#    {% endif %}#}
  66.             {#    {% if nextAmount > 0 or nextBuytimes > 0 %}#}
  67.             {#        <p>ご購入頂くと「<span class="rank">{{ NextCustomerRank.name }}</span>」にランクアップします。</p>#}
  68.             {#    {% endif %}#}
  69.             {#</div>#}
  70.             {#{% endif %}#}
  71.         </div>
  72.     </div>
  73. </div>
  74. {% endif %}