{% extends "base.html" %} {% block title %}Products - Northwind Traders{% endblock %} {% block content %}

Products

+ New Product
{% if products %}
{% for product in products %} {% endfor %}
ID Product Name Category Supplier Price Stock Status Actions
{{ product['ProductID'] }} {{ product['ProductName'] }} {{ product['CategoryName'] }} {{ product['SupplierID'] }} ${{ "%.2f"|format(product['UnitPrice']) }} {{ product['UnitsInStock'] }} {% if product['Discontinued'] %} Discontinued {% elif product['UnitsInStock'] < 10 %} Low Stock {% else %} Available {% endif %}
Edit
{% else %}

{% if selected_category %}No products found in {{ selected_category }}{% else %}No products in database. Create your first product!{% endif %}

{% endif %}
Showing {{ products|length }} product(s)
{% endblock %}