{% extends "panel_base.html" %} {% block header_title %}{{gettext("Product Info")}} | {{get_sitename()}}{% endblock %} {% block title %}{{gettext("Product Info")}}{% endblock %} {% block content %}

{{gettext("Product Info")}}

{{product.name}}

{{product.description | safe}}

{{gettext("Product Variants")}}

{{gettext("Add Variant")}}
{% for v in product.variants %} {% endfor %}
{{gettext("ID")}} {{gettext("name")}} {{gettext("price")}} {{gettext("quantity")}} {{gettext("quantity allocated")}} {{gettext("settings")}}
{{v.id}} {{v.name}} {{v.get_price()}} {{v.quantity}} {{v.quantity_allocated}} {{gettext("Edit")}}
{% endblock %} {% block js_block %} {% endblock %}