{% extends "base.html" %} {% block title %}Cash Withdrawal - QuantumQuickSales{% endblock %} {% block page_title %}Cash Withdrawal Management{% endblock %} {% block content %}
Record Cash Withdrawal
Recent Withdrawals
Cash Register
{% if withdrawals %}
{% for withdrawal in withdrawals %} {% endfor %}
Date Amount Reason Withdrawn By Time
{{ withdrawal[0].strftime('%d/%m/%Y') if withdrawal[0] else 'N/A' }} -₹{{ "%.2f"|format(withdrawal[1]) }} {{ withdrawal[2] }} {{ withdrawal[3] }} {{ withdrawal[4].strftime('%H:%M') if withdrawal[4] else 'N/A' }}
{% else %}
No withdrawals found

No cash withdrawals have been recorded yet.

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