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

Dashboard

Add New Product {% for product in products %} {% endfor %}
ID Name Price Description Actions
{{ product.id }} {{ product.name }} ${{ "%.2f"|format(product.price) }} {{ product.description }} Edit Delete
{% endblock %}