{% extends 'base.html' %} {% load static %} {% block title %}Bursar Dashboard - Rapha-Bethel BNPS{% endblock %} {% block content %}

Bursar Dashboard

Financial overview — {{ "now"|date:"F Y" }}

Total Revenue
{{ total_revenue|floatformat:0 }} XAF
All time
This Month
{{ monthly_revenue|floatformat:0 }} XAF
Net: {{ net_income|floatformat:0 }} XAF
Pending Invoices
{{ pending_invoices }}
View all
Overdue
{{ overdue_invoices }}
View all
Revenue — Last 6 Months (XAF)
This Month
Revenue {{ monthly_revenue|floatformat:0 }} XAF
Expenses {{ monthly_expenses|floatformat:0 }} XAF
Net Income {{ net_income|floatformat:0 }} XAF
Recent Payments
View All
{% for payment in recent_payments %} {% empty %} {% endfor %}
StudentAmountDateMethod
{{ payment.student.get_full_name }} {{ payment.amount|floatformat:0 }} XAF {{ payment.payment_date|date:"d M Y" }} {{ payment.get_payment_method_display }}
No recent payments
Due This Week
All Invoices
{% for inv in upcoming_due %} {% empty %} {% endfor %}
StudentDueBalance
{{ inv.student.get_full_name }} {{ inv.due_date|date:"d M" }} {{ inv.balance|floatformat:0 }} XAF
Nothing due this week
{% endblock %} {% block extra_js %} {% endblock %}