brotherton-erpnext/erpnext/templates/generators/item/item_configure.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
584 B
HTML
Raw Normal View History

{% 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">
{% if cart_settings.enable_variants | int %}
2021-01-20 12:17:25 +00:00
<button class="btn btn-primary-light btn-configure"
data-item-code="{{ doc.name }}"
data-item-name="{{ doc.item_name }}"
>
{{ _('Configure') }}
</button>
{% endif %}
2020-08-31 08:30:27 +00:00
{% if cart_settings.show_contact_us_button %}
{% include "templates/generators/item/item_inquiry.html" %}
{% endif %}
</div>
<script>
{% include "templates/generators/item/item_configure.js" %}
</script>
{% endif %}