{% extends "base.html" %} {% block title %}All Invoices - QuantumQuickSales{% endblock %} {% block page_title %}All Invoices{% endblock %} {% block content %}
All Invoices
Recycle Bin
{% if invoices %}
{% for invoice in invoices %} {% endfor %}
Invoice ID Customer Name Phone Number Total Amount Payment Mode Date Created By Actions
{{ invoice[0] }} {{ invoice[1] }} {{ invoice[2] }} ₹{{ "%.2f"|format(invoice[3]) }} {{ invoice[6] if invoice[6] else 'Cash' }} {{ invoice[4].strftime('%d/%m/%Y %H:%M') if invoice[4] else 'N/A' }} {{ invoice[5] }} View
{% else %}
No invoices found

Create your first invoice to get started

Create Invoice
{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}