{% extends 'layout.html' %}
{% block page_body %}
{% set block_id = 'styles' %}
{% include '_shared_store.html' %}
Category
Product
Variations
Quantity Stock
Quantity Min
Quantity Max
Cost
{% set is_blank_row = False %}
{% for category in model.category_list.categories %}
{% for product in category.products %}
{% for permutation in product.permutations %}
{% include '_block_store_permutation.html' %}
{% endfor %}
{% endfor %}
{% endfor %}
{% set is_blank_row = True %}
{% include '_block_store_permutation.html' %}
{% set block_id = 'scripts' %}
{% include '_shared_store.html' %}
{% endblock %}