{% extends "base.html" %} {% load static %} {% block title %}{{ product.name }} · {{ SITE_NAME }}{% endblock %} {% block meta_description %}{{ product.name }} — {{ product.price }} {{ product.currency|upper }} at {{ SITE_NAME }}.{% endblock %} {% block extra_head %} {% include "shop/_stl_importmap.html" %} {% endblock %} {% block content %} {% include "public/_breadcrumbs.html" with title=product.name %}

{{ product.name }}

${{ product.price }}
{{ product.description|linebreaks }}

  • SKU:{{ product.sku }}
  • Fulfillment:{{ product.get_fulfillment_display }}
  • Availability:{% if available is not None %}{{ available }} in stock{% endif %}
  • {% if product.print_minutes %}
  • Print time:{{ product.print_minutes }} min
  • {% endif %}
{% csrf_token %} {% if colors %}

Color: {{ selected_color.name }}

{% for color in colors %} {% endfor %}
{% endif %}

← Back to shop

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 %}
    {% for review in reviews %}
  • {{ review.rating }}/5 {% if review.title %} · {{ review.title }}{% endif %} — {{ review.user.first_name|default:review.user.email }} {% if review.body %}

    {{ review.body|linebreaks }}

    {% endif %}
  • {% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}