{% extends "base.html" %} {% block title %}Products - Northwind Traders{% endblock %} {% block content %}
| 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 %} |
{% if selected_category %}No products found in {{ selected_category }}{% else %}No products in database. Create your first product!{% endif %}
{% endif %}