src/Front/Modules/OnlineService/Templates/OnlineService/partials/addToCartButtonWidget.html.twig line 1

  1. <div class="add_service_to_cart_button_widget">
  2.     {% if not inCart %}
  3.         <button type="button" data-id="{{ service.id }}" data-item-type="{{ constant('App\\Front\\Modules\\Cart\\Service\\CartService::ITEM_TYPE_ONLINE_SERVICE') }}" class="add_service_to_cart_button btn btn-primary mt-auto" style="width: 100%">Dodaj do koszyka</button>
  4.     {% endif %}
  5.     <button type="button" class="service_added_to_cart_button btn btn-primary mt-auto" disabled="disabled" style="width: 100%;{{ not inCart ? 'display: none' : '' }}">W koszyku</button>
  6. </div>
  7. {% if not inCart and loadJS %}
  8.     <script type="text/javascript" src="{{ asset('assets/app/front/modules/online-service/js/add_to_cart_button_widget.js') }}"></script>
  9. {% endif %}