{% extends 'base.html' %} {% block content %}
| Invoice # | Date | Party Name | Total | Status | {% if is_active_page %}Edit | {% endif %}Action |
|---|---|---|---|---|---|---|
| #{{ order.id }} |
{{ order.created_at|date:"M d, Y" }}
{{ order.created_at|date:"h:i A" }}
|
{{ order.party_name|title }} | Rs. {{ order.total_amount }} | {% if order.is_return %} Returned {% elif order.is_cancelled %} Cancelled {% elif order.is_delivered %} {% if is_active_page %} {% else %}Delivered{% endif %} {% else %} {% if is_active_page %} {% else %}Pending{% endif %} {% endif %} | {% if is_active_page %}{% endif %} | View |
| No orders found. | ||||||