custom/plugins/ATNTheme/src/Resources/views/storefront/priceonrequest/porbtn.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/priceonrequest/porbtn.html.twig' %}
  2. {% block nimbits_page_product_detail_por_button %}
  3.     {% if customizedProductsTemplate and customizedProductsTemplate.active %}
  4.         <button
  5.                 class="btn btn-primary btn-block btn-buy btn-nb-pricerequest-detail-cpext btn-animated"
  6.                 title="{{ 'nimbits-pricerequests.detail.button.openrequestform'|trans }}">
  7.             <span class="button-text">{{ 'nimbits-pricerequests.detail.button.openrequestform'|trans }}</span>
  8.             {% sw_icon 'arrow-right' style {
  9.                 'color': 'primary'
  10.             } %}
  11.         </button>
  12.     {% else %}
  13.         <div
  14.                 class="btn btn-block btn-nb-pricerequest-detail btn-primary btn-animated"
  15.                 title="{{ 'nimbits-pricerequests.detail.button.openrequestform'|trans }}">
  16.             <span class="button-text">{{ 'nimbits-pricerequests.detail.button.openrequestform'|trans }}</span>
  17.             {% sw_icon 'arrow-right' style {
  18.                 'color': 'primary'
  19.             } %}
  20.         </div>
  21.     {% endif %}
  22. {% endblock %}