{% extends 'base.html' %} {% load static %} {% load currency_filters i18n i18n_filters %} {% block meta %} {% if product.images.all %} {% for img in product.images.all %} {% if img.is_primary or forloop.first %} {% endif %} {% endfor %} {% else %} {% endif %} {% if product.images.all %} {% for img in product.images.all %} {% if img.is_primary or forloop.first %} {% endif %} {% endfor %} {% else %} {% endif %} {% endblock %} {% block content %}
{% if product.images.all %} {% for img in product.images.all %} {% if img.is_primary or forloop.first %} {{ img.alt_text|default:product.name }} {% endif %} {% endfor %} {% else %} {{ product.name }} {% endif %}
{% if product.images.all|length > 1 %}
{% for img in product.images.all %}
{{ img.alt_text|default:product.name }}
{% endfor %}
{% endif %} {% if product.videos.all %}
{% for video in product.videos.all %} {% if video.is_primary or forloop.first %} {% if video.title %}
{{ video.title }}
{% endif %} {% endif %} {% endfor %}
{% endif %}
{{ translated_product.name|default:product.name }}
{% for i in "12345" %} {% if i|add:0 <= product.average_rating %} {% elif i|add:0 <= product.average_rating|add:0.5 %} {% else %} {% endif %} {% endfor %} {{ product.average_rating|floatformat:1 }} ({{ product.reviews.count }} reviews)
{% with discount=product.get_active_discount %} {% if discount %}
{{ currency_symbol }}{{ product.price|convert_currency:currency_rate|floatformat:2 }} {{ currency_symbol }}{{ product.get_discounted_price|convert_currency:currency_rate|floatformat:2 }} {% if discount.discount_type == 'percentage' %} -{{ discount.discount_value }}% {% else %} Save {{ currency_symbol }}{{ discount.discount_value|convert_currency:currency_rate|floatformat:2 }} {% endif %}
{{ discount.name }} - Save {{ currency_symbol }}{{ product.get_discount_amount|convert_currency:currency_rate|floatformat:2 }} {% if discount.code %}
Use code: {{ discount.code }} {% endif %}
{% else %}
{{ currency_symbol }}{{ product.price|convert_currency:currency_rate|floatformat:2 }} {% if product.free_delivery %} {{ product.free_delivery }} {% endif %}
{% endif %} {% endwith %}

{% trans 'Availability' %}:

{% if product.stock > 0 %} {{ product.stock }} {% trans 'units in stock' %} {% else %} {% trans 'Out of Stock' %} {% endif %}
{% if product.allow_customer_offer %} {% trans 'Customer Offer Available' %} {% endif %}
Description
{{ product.description|safe }}
{% if product.features.all %}
Features & Specifications
{% for feature in product.features.all %}
{{ feature.name }}
{{ feature.value }}
{% endfor %}
{% endif %}
Share this product
{% if request.user.is_staff %} {% endif %}
{% if product.allow_customer_offer %}
📝 Make an Offer

Send us your preferred price for this product. {% if product.min_offer_price %} Minimum offer: {{ currency_symbol }}{{ product.min_offer_price|convert_currency:currency_rate|floatformat:2 }} {% endif %}

{% if request.user.is_authenticated %}
{% csrf_token %} {{ offer_form.non_field_errors }}
{{ offer_form.offered_price.label_tag }} {{ offer_form.offered_price }} {{ offer_form.offered_price.errors }}
{{ offer_form.message.label_tag }} {{ offer_form.message }} {{ offer_form.message.errors }}
{% else %}

Log in to make an offer for this product.

{% endif %}
{% endif %} {% if product.variants.exists %}

Available Variants

{% for variant in product.variants.all %} {% if variant.is_active %}
{{ variant.sku }}

${{ variant.price|floatformat:2 }}

Stock: {{ variant.stock }} units

{% for attr in variant.attributes.all %} {{ attr }} {% endfor %}
{% endif %} {% endfor %}
{% endif %}

Customer Reviews

Leave a Review
{% csrf_token %}
{% for review in product.reviews.all %}
{{ review.user.username }}
{% for i in "12345" %} {% if i|add:0 <= review.rating %} {% else %} {% endif %} {% endfor %}
{{ review.created_at|date:'d M Y' }}

{{ review.comment }}

{% empty %} {% endfor %}
{% endblock %}