2019-03-19 06:18:32 +00:00
|
|
|
{% if shopping_cart and shopping_cart.cart_settings.enabled %}
|
|
|
|
{% set cart_settings = shopping_cart.cart_settings %}
|
|
|
|
|
2021-01-20 12:17:25 +00:00
|
|
|
<div class="mt-5 mb-6">
|
2020-07-23 10:28:47 +00:00
|
|
|
{% if cart_settings.enable_variants | int %}
|
2021-08-16 19:18:36 +00:00
|
|
|
<button class="btn btn-primary-light btn-configure font-md mr-2"
|
2021-10-12 14:23:38 +00:00
|
|
|
data-item-code="{{ doc.item_code }}"
|
|
|
|
data-item-name="{{ doc.web_item_name }}"
|
2019-03-19 06:18:32 +00:00
|
|
|
>
|
2021-08-16 19:18:36 +00:00
|
|
|
{{ _('Select Variant') }}
|
2019-03-19 06:18:32 +00:00
|
|
|
</button>
|
|
|
|
{% endif %}
|
2020-08-31 08:30:27 +00:00
|
|
|
{% if cart_settings.show_contact_us_button %}
|
|
|
|
{% include "templates/generators/item/item_inquiry.html" %}
|
2019-03-19 06:18:32 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
{% include "templates/generators/item/item_configure.js" %}
|
|
|
|
</script>
|
|
|
|
{% endif %}
|