{% extends 'partials/base.html' %} {% load static %} {% block content %}
{% block title %} {% include 'partials/title.html' with title='Invoices' text='Dashboard' textone='Finance & Accounts' texttwo='Invoices' %} {% endblock %}

Invoices List

{% for record in accounts_invoices %} {% endfor %}
Invoice Number Date Description Amount Payment Method Due Date Status Action
{{ record.Invoice_Number }} {{ record.Date }} {{ record.Description }} {{ record.Amount }} {{ record.Payment_Method }} {{ record.Due_Date }} {{ record.Status }}
{% endblock %}