{% extends 'base.html' %} {% block content %}

Our Wellness Products

Premium organic herbs and supplements for your health journey

{% for product in products %}
{% if product.badge %} {{ product.badge }} {% endif %}
{% if product.image_url %} product image {% else %} product image {% endif %}

{{ product.name }}

{% if product.description %}

{{ product.description }}

{% endif %}

N {{ "%.2f"|format(product.price) }}

{% if current_user.is_authenticated %}
{% else %} Sign in to Buy {% endif %} {% if product.quantity_available and product.quantity_available < 10 %}

Only {{ product.quantity_available }} left in stock!

{% endif %}
{% endfor %}
{% if current_user.is_authenticated %} {% endif %}
{% endblock %}