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

Try searching with different keywords

{% endif %} {% else %}
Search Invoices

Enter a customer name, phone number, or invoice ID to search

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}