{% extends 'base.html' %} {% block content %}
| Order ID | Customer Name | Date | Time | Amount | Payment Type | Status | Action |
|---|---|---|---|---|---|---|---|
| #{{ order.id }} | {{ order.customer_name }} | {{ order.date }} | {{ order.time }} | ${{ "%.2f"|format(order.amount) }} | {{ order.payment_type|title }} | {{ order.status|title }} |
View
{% if order.status == 'pending' %}
{% endif %}
|
| No orders found | |||||||