{% extends "shopyo_base/module_base.html" %} {% set active_page ='products' %} {% block pagehead %}
{{ subcategory.category.name }} · {{ subcategory.products|length }} products
| barcode | name | price | selling price | sizes | in stock | |
|---|---|---|---|---|---|---|
| {{p.barcode}} | {{p.name}} | {{currency_symbol}}{{p.price}}{%if p.is_variable_qty %}/{{p.unit_label}}{%endif%} | {{currency_symbol}}{{p.selling_price}} |
{%if p.sizes %}
{%for s in p.sizes%}
{{s.name}}{%if s.price%} @ {{currency_symbol}}{{s.price}}{%endif%}
{%endfor%}
{%else%}-{%endif%}
|
{%if p.in_stock%} In Stock {%else%} Out {%endif%} | |
|
No products yet Add your first product |
||||||