🌱 SeedVault

{% if search_query %} Clear {% endif %}
{% if last_sync %}
Sync: {{ last_sync.timestamp.strftime('%H:%M') }}
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{% if category == 'success' %}✅{% elif category == 'danger' %}❌{% else %}⚠️{% endif %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% if not products %} {% endif %}
{% for product in products %}

{{ product.name }}

{{ product.sku or 'No SKU' }}

{% if product.get_status() == 'OK' %} OK {% elif product.get_status() == 'LOW' %} Low {% else %} Out {% endif %}

Stock

{{ product.current_stock_qty if product.is_unit_based else "%.2f"|format(product.current_stock_g) }}{% if not product.is_unit_based %}g{% else %} units{% endif %}

{% if not product.is_unit_based %}

Weight/Pkg

{{ "%.2f"|format(product.weight_per_packet_g) }}g

{% endif %}
Edit
{% endfor %} {% if not products %}
No products found.
{% endif %}