2020-08-31 08:30:27 +00:00
|
|
|
{% if shopping_cart and shopping_cart.cart_settings.enabled %}
|
|
|
|
{% set cart_settings = shopping_cart.cart_settings %}
|
2021-06-08 14:10:26 +00:00
|
|
|
{% if cart_settings.show_contact_us_button | int %}
|
|
|
|
<button class="btn btn-inquiry btn-primary-light font-md" data-item-code="{{ doc.name }}">
|
|
|
|
{{ _('Contact Us') }}
|
|
|
|
</button>
|
2020-08-31 08:30:27 +00:00
|
|
|
{% endif %}
|
|
|
|
<script>
|
|
|
|
{% include "templates/generators/item/item_inquiry.js" %}
|
|
|
|
</script>
|
|
|
|
{% endif %}
|