{% extends "base.html" %} {% block content %}
| {{ l('Invoice', 'ইনভয়েস') }} | {{ l('Customer', 'গ্রাহক') }} | {{ l('Amount', 'টাকা') }} | {{ l('Due', 'বাকি') }} | {{ l('Date', 'তারিখ') }} |
|---|---|---|---|---|
| {{ invoice.invoice_no }} | {{ invoice.customer.name if invoice.customer else l('Walk-in', 'সরাসরি বিক্রি') }} | ৳ {{ '%.2f'|format(invoice.total_amount or 0) }} | ৳ {{ '%.2f'|format(invoice.due_amount or 0) }} | {{ invoice.created_at.strftime('%d %b, %I:%M %p') if invoice.created_at else '' }} |
| {{ l('No sales yet.', 'এখনও কোনো বিক্রি হয়নি।') }} | ||||