{% if variation.has_price %}
{% if product.available %}
{% if not variation.unit_price and not category %}
- <span class="price">{% trans "Price" %} : <a href="{% url 'page' 'about/contact-form' %}">{% trans "Make an offer" %}</a></span>
+ <span class="price">{% if not category %}{% trans "Price" %} : {% endif %}<a href="{% url 'page' 'about/contact-form' %}">{% trans "Make an offer" %}</a></span>
{% elif not variation.unit_price and category %}
- <span class="price">{% trans "Price" %} : {% trans "Make an offer" %}</span>
+ <span class="price">{% if not category %}{% trans "Price" %} : {% endif %}{% trans "Make an offer" %}</span>
{% else %}
- <span class="price">{% trans "Price" %} : {{ variation.unit_price|currency }}</span>
+ <span class="price">{% if not category %}{% trans "Price" %} : {% endif %}{{ variation.unit_price|currency }}</span>
{% endif %}
{% endif %}
{% else %}