{% extends "oscar/layout.html" %} {% load history_tags %} {% load currency_filters %} {% load reviews_tags %} {% load product_tags %} {% load display_tags %} {% load i18n %} {% load purchase_info_tags %} {% block title %} {{ product.get_meta_title }} | {{ block.super }} {% endblock %} {% block description %} {{ product.get_meta_description }} {% endblock %} {% block breadcrumbs %} {% with category=product.get_categories.first %} {% for c in category.get_ancestors_and_self %} {% endfor %} {% get_back_button as backbutton %} {% if backbutton %}
  • {{ backbutton.title }}
  • {% endif %} {% endwith %} {% endblock %} {% block header %} {% endblock header %} {% block content %} {% purchase_info_for_product request product as session %}
    {% include "oscar/catalogue/partials/gallery.html" %}

    {{ product.get_title }}

    {% if user.is_staff %} {% endif %}
    {% if product.reusability_label %} {{ product.reusability_label }} {% else %}   {% endif %}
    {% if product.get_deposit and not hide_price %} inkl. MwSt. zzgl Pfand: {{ product.get_deposit|currency:session.price.currency }} {% else %}   {% endif %}
    {% if not hide_price %}
    Preis:
    {{ session.price.base_price.incl|currency:session.price.currency }}
    {% if session.price.has_special_price %} {{ session.price.special_price.incl|currency:session.price.currency }} {% endif %}
    {% endif %}
    {% if session.price.volume_price %} Literpreis: {% elif session.price.weight_price %} Kilopreis: {% endif %}
    {% if session.price.volume_price %} {{ session.price.volume_price|currency:session.price.currency }}/{% trans 'Liter' %} {% elif session.price.weight_price %} {{ session.price.weight_price|currency:session.price.currency }}/{% trans 'kg' %} {% endif %}
    {% if not product.is_parent and not product.has_options %} {% include "oscar/catalogue/partials/add_to_basket_form_compact.html" %} {% endif %}
    {% if product.description %}

    {% trans "Product Description" %}

    {{ product.description|safe }}

    {% endif %}

    {% trans "Product Information" %}

    {% if product.upc %} {% endif %} {% if session.price.exists and not hide_price %} {% if session.price.is_tax_known %} {% endif %} {% if session.price.deposit_incl_tax %} {% endif %} {% endif %} {% for key, value in product.attached_values.items %} {% endfor %} {% for av in product.get_attribute_values %} {% if av.attribute.product_details_enabled %} {% endif %} {% endfor %} {% iffeature "reviews" %} {% endiffeature %}
    {% trans "UPC" %}{{ product.upc }}
    {% trans "Product Type" %}{{ product.get_product_class.name }}
    {% trans "Price (incl. tax)" %} {{ session.price.incl_tax_excl_deposit|currency:session.price.currency }}
    Pfand (inkl. Steuer) {{ session.price.deposit_incl_tax|currency:session.price.currency }}
    {{ key }} {{ value }}
    {{ av.attribute.name }} {% if av.value_as_html is True or av.value_as_html is False %} {% with av.value_as_html as value %} {% include 'partials/boolean_value.html' %} {% endwith %} {% else %} {{ av.value_as_html }} {% endif %}
    {% trans "Number of reviews" %} {{ product.num_approved_reviews }}
    {% if request.user.is_system_admin %}
    {% with price=session.price %} {% include './partials/price_matrix.html' %} {% endwith %}
    {% endif %}
    {% with recommended_products=product.sorted_recommended_products|slice:":6" %} {% if recommended_products %}

    {% trans "Recommended items" %}

    {% endif %} {% endwith %}
    {% recently_viewed_products current_product=product %}
    {% endblock content %} {% block extrascripts %} {{ block.super }} {% endblock %}