{% extends "shop/base.html" %} {% comment %} ------------------------------------------------------------------- This is the base product detail page. To modify the templates of specific types of products, such as ProductVariations or CustomProducts, look for product/detail_xxx.html ------------------------------------------------------------------- {% endcomment %} {% load i18n %} {% load thumbnail %} {% load satchmo_price %} {% load satchmo_currency satchmo_category %} {% load satchmo_util satchmo_discounts %} {% load app_plugins %} {% block extra-head %} {% if product.meta %} {% endif %} {% endblock %} {% block navbar %}
{{ product.translated_description }}
{% trans "Price" %} {% if default_view_tax %} {% trans '(incl. tax)' %}{% endif %}:
{% for att in product.translated_attributes %}
{{ att.description }}: {{ att.value }}
{% endfor %}
{{ error_message }}
{% endif %} {% endblock %} {% block productfooter %} {% if sale %}{% include "product/product_discount_eligible.html" %}{% endif %} {% plugin_point "product_footer" %} {% endblock %} {% endblock %}