{% extends 'base_customer.html' %} {% block title %}My Bills - Optinet Global Links{% endblock %} {% block content %}

My Bills

{% 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 }} ${{ invoice.total_amount }} {{ invoice.get_status_display }} View
{% if page_obj.has_other_pages %} {% endif %}
{% else %}
No invoices found

You don't have any bills yet.

{% endif %}
{% endblock %}