themes/webapicTheme/templates/bundles/SyliusShopBundle/Webapic/panier/block-onemorething.html.twig line 1

Open in your IDE?
  1. <div class="onemorething">
  2.     <div class="block">
  3.         <h3 class="ui dividing header active">Adresse de facturation</h3>
  4.     </div>
  5. </div>
  6. {# {{dump(cart)}} #}
  7. <div class="pagepanier-fidelite">
  8.  {# {{ dump(cart) }} #}
  9.     {% if is_granted('ROLE_USER') %}
  10.         {% if cart.canLoyalty == 1  %} 
  11.         {# {% if app.user.customer.loyaltyPoints  is defined and  app.user.customer.loyaltyPoints != 0 %}       #}
  12.             <p>{{ 'app.front.panier.coupon.part1'|trans }}  {{ cart.totalLoyalty }} €</p>
  13.             {% if cart.hasLoyalty == 1  %} 
  14.                 <button data-url={{ path('app_fidelite_cart', {fidelity: 0}) }} type="submit" class="lien-bleu">
  15.                     {{ 'app.front.panier.coupon.part2'|trans }}
  16.                 </button>
  17.            {% else %}
  18.                <button data-url={{ path('app_fidelite_cart', {fidelity: 1}) }} type="submit" class="lien-bleu">
  19.                     {{ 'app.front.panier.coupon.part3'|trans }}
  20.                 </button>
  21.             {% endif %}
  22.         {% endif %}
  23.     {% else %}
  24.         <p><a href="{{ path('sylius_shop_login') }}">{{ 'app.front.panier.coupon.part4'|trans }}</a> {{ 'app.front.panier.coupon.part5'|trans }}</p>
  25.     {% endif %}
  26. </div>