{% extends 'base.html' %} {% block title %}{{ customer.full_name }} - Invoices - Optinet Global Links{% endblock %} {% block content %}

{{ customer.full_name }} - Invoices

Back to Customer
{% if page_obj %}
{% for invoice in page_obj %} {% endfor %}
Invoice # Issue Date Due Date Amount Status Actions
{{ invoice.invoice_number }} {{ invoice.issue_date }} {{ invoice.due_date }} KSh {{ invoice.total_amount }} {{ invoice.get_status_display }} View
{% if page_obj.has_other_pages %} {% endif %}
{% else %}
No invoices found

This customer doesn't have any invoices yet.

Create Invoice
{% endif %}
{% endblock %}