{% extends 'adminsection/base.html' %} {% load static %} {% block content %}

Invoice List

Invoice List:

{% for invoice in invoices %} {% endfor %}
# Invoice Id Customer Name Invoice Date Action
{{ forloop.counter }} {{ invoice.BillingNumber}} {{ invoice.Customer.Name}} {{ invoice.Date}} View
{% endblock %}