{% extends 'base.html' %} {% load static %} {% block title %}Invoices - Rapha-Bethel BNPS{% endblock %} {% block content %}
| Invoice # | Student | Academic Year | Term | Total (XAF) | Paid (XAF) | Balance (XAF) | Due Date | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ invoice.invoice_number }} | {{ invoice.student.get_full_name }} | {{ invoice.academic_year }} | {{ invoice.get_term_display }} | {{ invoice.total_amount|floatformat:0 }} | {{ invoice.amount_paid|floatformat:0 }} | {{ invoice.balance|floatformat:0 }} | {{ invoice.due_date|date:"d M Y" }} | {{ invoice.get_status_display }} | |
| No invoices found. {% if not request.GET.q and not request.GET.status %} Create the first invoice {% endif %} | |||||||||