{% set cateflag = false %}
{% if Product.ProductCategories is not empty %}
{% for ProductCategory in Product.ProductCategories %}
{% for Category in ProductCategory.Category.path %}
{% if Category.id == 21 %}
{% set cateflag = true %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
<script>
$(function () {
$('#form1 .ec-productRole__btn').filter(":last").after('<div class="ec-productRole__btn">\n' +
' <button type="button" class="ec-blockBtn--cancel contact">{{ contact_button_label }}</button>\n' +
' </div>')
$('body').on('click','.ec-productRole__btn .contact', function () {
//location.href = "{{ url('contact') }}?product={{ Product.id }}"
{% if cateflag %}
location.href = "{{ url('contact3') }}?product={{ Product.id }}"
{% else %}
location.href = "{{ url('contact') }}?product={{ Product.id }}"
{% endif %}
})
})
</script>