{% extends 'base.html' %} {% block title %}Invoices - Optinet Global Links{% endblock %} {% block content %}
{% for invoice in page_obj %} {% empty %} {% endfor %}
Invoice # Customer Amount Status Due Date Actions
{{ invoice.invoice_number }} {{ invoice.customer.full_name }} KSh {{ invoice.total_amount }} {{ invoice.get_status_display }} {{ invoice.due_date }} View
No invoices found.
{% if page_obj.has_other_pages %} {% endif %}
{% endblock %}