Flavory Deli

Categories

Products

{% for p in products %}
{% set imgs = p.image_list() %} {{ p.name }}

{{ p.name }}

{% if p.size %}

Size: {{ p.size }}

{% endif %}

Price: R {{ p.price }}

{% endfor %}
2️⃣ product.html {{ product.name }} - Flavory Deli

{{ product.name }}

Back to Home
{% for img in product.image_list()[:3] %} {{ product.name }} {% endfor %} {% if not product.image_list() %} No image {% endif %}

Category: {{ product.category }}

{% if product.size %}

Size: {{ product.size }}

{% endif %}

Price: R {{ product.price }}

{% if product.flavor_list() %}
{% endif %} {% if product.is_cake %}
{% endif %}
3️⃣ cart.html Cart - Flavory Deli

Your Cart

Back to Home {% if cart %}
{% for item in cart %} {% endfor %}
ProductSizeFlavorQtyPriceRemove
{{ item.name }} {{ item.size }} {{ item.flavor }} R {{ item.total_price }}

Subtotal: R {{ subtotal }}

Proceed to Checkout {% else %}

Your cart is empty.

{% endif %} 4️⃣ checkout.html Checkout - Flavory Deli

Checkout

Back to Cart

Order Summary

Subtotal: R {{ subtotal }}

Delivery Fee: R {{ delivery_fee }}

Customer Info