{% extends "base.html" %} {% block title %}{{ product.name }} · {{ SITE_NAME }}{% endblock %} {% block content %}

← Shop

{{ product.name }}

{{ product.price }} {{ product.currency|upper }} · {{ product.sku }}

{{ product.description|linebreaks }}
{% if available is not None %}

{{ available }} in stock

{% endif %}
{% csrf_token %}

Reviews

{% if review_count %}

{{ review_avg|floatformat:1 }} / 5 · {{ review_count }} review{{ review_count|pluralize }}

{% else %}

No reviews yet.

{% endif %} {% if can_review %}
{% csrf_token %}

{% elif already_reviewed %}

You already reviewed this product.

{% elif user.is_authenticated %}

Buy this product to leave a review.

{% else %}

Sign in after a purchase to leave a review.

{% endif %}
{% endblock %}