{% extends "../base.html" %} {% load crispy_forms_tags %} {% load humanize %} {% block page_title %}Bulk Create Class Bills{% endblock %} {% block content %}

Bulk Create Class Bills

Create bills for multiple classes in one step.
Select a bill item, set the amount, and choose the target classes.
{% if current_year and current_term %}

Current Term: {{ current_term }} - {{ current_year }}

You are creating bills for the current academic term. Bills will be applied to all selected classes.

{% else %}

No Current Term

Please set a current academic year and term before creating bills.

{% endif %} {% if available_classes %}
{% csrf_token %}
{% for class_info in available_classes %}
{% endfor %}
Back to Bill List

Preview & Summary

Selected Classes: 0
Select classes above to see preview
Estimated Impact:
  • Total Classes: 0
  • Estimated Students: 0
  • Per Student Amount: UGX 0
  • Total Billing Amount: UGX 0
{% else %}

No Classes Available

No academic classes found for the current term. Please ensure you have set up academic classes first.

Set Up Academic Classes
{% endif %}
{% endblock %}