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

You haven't created any invoices yet.

Create Your First Invoice
{% endif %}
{% endblock %}