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

Orders

{% for order in orders %} {% endfor %}
ID Product ID Quantity Total Price
{{ order.id }} {{ order.product_id }} {{ order.quantity }} ${{ "%.2f"|format(order.total_price) }}
{% endblock %}