{% extends "base.html" %} {% block title %}User Dashboard - QuantumQuickSales{% endblock %} {% block page_title %}User Dashboard{% endblock %} {% block content %}

Welcome, {{ session.username }}!

Manage your sales and invoices efficiently

Recent Invoices
{% if recent_invoices %}
{% for invoice in recent_invoices %}
Invoice #{{ invoice[0] }}
{{ invoice[1] }}
₹{{ "%.2f"|format(invoice[3]) }}
{% endfor %}
{% else %}

No recent invoices

{% endif %}
Today's Cash Summary
Opening Cash

₹{{ "%.2f"|format(cash_register[0] if cash_register else 0) }}

Cash from Invoices

₹{{ "%.2f"|format(today_cash or 0) }}

Closing Cash

₹{{ "%.2f"|format(cash_register[3] if cash_register else 0) }}

{% if cash_register %} Register Created {% else %} No Register for Today {% endif %} Manage Cash Register
System Information
Create Invoice

Generate new sales invoices

Start
Search

Find invoices and customers

Search
History

View transaction history

View
Profile

Manage your account

Coming Soon
{% endblock %}