{% extends 'core/base.html' %} {% load static %} {% block title %}Variants — {{ product.name }} | SwiftPOS{% endblock %} {% block topbar_title %}Product Variants{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if variants %} {% for v in variants %}
{{ v.display_label }}
{% if v.stock_status == 'in_stock' %} In Stock {% elif v.stock_status == 'low_stock' %} Low Stock {% else %} Out of Stock {% endif %}
SKU: {{ v.sku }} {% if v.barcode %} • Barcode: {{ v.barcode }}{% endif %}
{% for attr in v.attributes.all %} {{ attr.attribute_name|title }}: {{ attr.attribute_value }} {% empty %} Standard {% endfor %}
{% for key, val in v.attribute_values.items %} {% endfor %}
Price
{{ currency_symbol }}{{ v.effective_price|floatformat:2 }}
Cost
{{ currency_symbol }}{{ v.effective_cost|floatformat:2 }}
{% if user_branch %}
Branch Stock
{{ v.stock_quantity }}
Global: {{ v.stock_quantity }}
{% else %}
Stock
{{ v.stock_quantity }}
{% endif %}
{% endfor %} {% else %}
No variants yet

Add your first variant (e.g. Size: M, Colour: Red) to track product variations.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}