{% extends 'base.html' %} {% load static %} {% block title %}Bulk Invoice Generation — Rapha-Bethel BNPS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Create invoices for all active students at once
| # | Student | Class | Fees Included | Subtotal (XAF) |
|---|---|---|---|---|
| {{ forloop.counter }} | {{ item.student.get_full_name }} | {{ item.student.current_class }} | {% for fee in item.fees %} {{ fee.name }} {% endfor %} | {{ item.subtotal|floatformat:0 }} |
| Grand Total: | {{ total_amount|floatformat:0 }} XAF | |||
You are about to create {{ total_to_create }} invoice{{ total_to_create|pluralize }} totalling {{ total_amount|floatformat:0 }} XAF for {{ academic_year }} Term {{ term }}. All invoices will be created with status Draft.