Place an Inquiry

{% for category in all_categories %}

{{ category }}

{% set category_products = products_by_cat[category] %} {% if category_products %}
{% for product in category_products %}
{{ product.name }}
{% if product.options %} {% for opt_name, opt_value in product.options.items() %}
{{ opt_name }}: {{ opt_value }}
{% endfor %} {% endif %} {% if product.rate %}

More Details: {{ product.rate }}

{% endif %}

Stock: {% if product.stock == 'in_stock' %} In Stock {% else %} Out of Stock {% endif %}

{% if product.image %} {% else %}
No Image
{% endif %} {% if product.stock == 'in_stock' %} {% endif %}
{% endfor %}
{% else %}

No products available in this category.

{% endif %}
{% endfor %}