{#
This file is part of the Gift42 Plugin
Copyright (C) 2023 Diezon.
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% block stylesheet %}
{% if isGiftDisableProduct(Product) %}
<style>
.detail-gift-explanation {
margin-bottom: 8px;
}
</style>
{% endif %}
{% endblock %}
{% block javascript %}
{% if isGiftDisableProduct(Product) %}
<script>
$(function () {
$('.detail-gift-explanation').insertAfter('.ec-productRole__actions');
});
</script>
{% endif %}
{% endblock javascript %}
{% block main %}
{% if isGiftDisableProduct(Product) %}
<div class="detail-gift-explanation">
{{ 'front.product_detail.gift_disable_product_description'|trans }}
</div>
{% endif %}
{% endblock %}