{% extends "base.html" %} {% load bootstrap_form from bootstrap3 %} {% load discounted_price_range price_difference from discount %} {% load i18n %} {% load gross from prices_i18n %} {% load markdown from markdown %} {% load price_range from price_ranges %} {% load static from staticfiles %} {% block title %}{{ product }} — {{ block.super }}{% endblock %} {% block breadcrumb %} {{ block.super }} {% with product.get_first_category as category %} {% if category %}
{% if undiscounted.min_price != price_range.min_price %}
{% price_range undiscounted %}
{% price_range price_range %}
{% trans "You save" %} {% gross discount %}
{% else %}
{% price_range price_range %}
{% endif %}
{% trans "This product is currently unavailable." %}
{% endif %}