{% extends 'qshop/shoppage.html' %} {% load sitemenu thumbnail %} {% load url from future %} {% block shopcontent %}

{{ product.name }} ({{ product.articul }})

{% if product.image %}
{% endif %} {% if product.get_additional_images %} {% for image in product.get_additional_images %} {% endfor %} {% endif %} {% if product.description %}

Description

{{ product.description }}
{% endif %}
{% if product.has_variations %}

Prices

{% for variation in product.get_variations %} {% endfor %}
{{ variation.name }} {{ variation.get_fprice }}{% if variation.has_discount %} old price: {{ variation.get_fprice_real }}{% endif %}
{% else %}

Price

{{ product.get_fprice }}{% if product.has_discount %} old price: {{ product.get_fprice_real }}{% endif %}

{% endif %}

{% if product.has_parameters %}

Parameters

{% for parameter in product.get_parameters %}
{{ parameter.name }}
{{ parameter.value }}
{% endfor %}
{% endif %} {% endblock shopcontent %}