{% extends "../base.html" %} {% load crispy_forms_tags %} {% load humanize %} {% block page_title %}Bill Items Management{% endblock %} {% block content %}

Bill Items Management

Manage all billing items and categories for the school.
Keep pricing and durations consistent across classes.
Total Items

{{ bill_items|length }}

Active Items

{{ bill_items|length }}

Categories

{{ bill_items|length|add:"2" }}

Monthly Items

{{ bill_items|length }}

Filters & Search
{% for item in bill_items %}
{{ item.item_name }}
{{ item.bill_duration|title }}
{{ item.category|title }} {{ item.bill_duration|title }}
{% if item.description %}

{{ item.description|truncatechars:80 }}

{% else %}

No description available

{% endif %}
{% endfor %}
{% endblock %}