{% extends 'base.html' %} {% load static %} {% 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 %} {% load currency_filters %} {% block content %}
{{ product.name }}

{{ product.description|truncatewords:30 }}

Adding...
{% 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.videos.all %}
{% for video in product.videos.all %} {% if video.is_primary or forloop.first %} {% if video.title %}

{{ video.title }}

{% endif %} {% endif %} {% endfor %}
{% endif %}

{{ product.name }}

{% 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 }}
{{ discount.name }} - Save {{ currency_symbol }}{{ product.get_discount_amount|convert_currency:currency_rate|floatformat:2 }} {% if discount.discount_type == 'percentage' %} ({{ discount.discount_value }}% off) {% else %} ({{ currency_symbol }}{{ discount.discount_value|convert_currency:currency_rate|floatformat:2 }} off) {% endif %} {% if discount.code %}
Use code: {{ discount.code }} {% endif %}
{% else %}

{{ currency_symbol }}{{ product.price|convert_currency:currency_rate|floatformat:2 }}

{% endif %} {% endwith %}
Product Description

{{ product.description }}

{% if product.productfeature %}
Product Features
{% for feature in product.features.all %}
{{ feature.name }}
{{ feature.value }}
{% endfor %}
{% endif %}

Stock: {{ product.stock }} units available

Share this product
{% if product.allow_customer_offer %}
Submit Your 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 request.user.is_staff %} Edit Product {% 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 ({{ product.reviews.count }})


{% for review in product.reviews.all %}
{{ review.user.username }}{{ review.rating }}★

{{ review.comment }}

{% empty %}

No reviews yet. Be the first!

{% endfor %}
Write a Review
{% csrf_token %}

Customer Reviews ({{ product.reviews.count }}) • {{ product.average_rating|floatformat:1 }} ★

Write a Review
{% csrf_token %}
{% for review in product.reviews.all %}
{{ review.user.username }} {{ review.rating }} ★

{{ review.comment }}

{{ review.created_at|date:'d M Y' }}
{% empty %}

No reviews yet. Be the first to review!

{% endfor %}
{% endblock %}