{% extends "../base.html" %} {% load crispy_forms_tags %} {% load humanize %} {% load custom_filters %} {% block page_title %}Financial Dashboard{% endblock %} {% block content %}

Financial Dashboard

{% if dashboard_data %}
Financial Dashboard
Track collections, budgets, and outstanding balances.
Collection Rate
{{ dashboard_data.collection_rate }}%
Of total fees billed
Budget Utilization
{{ dashboard_data.budget_utilization }}%
Of allocated budget
Total Collected
UGX {{ dashboard_data.total_collected|intcomma }}
{{ dashboard_data.current_term }} - {{ dashboard_data.current_year }}
Outstanding
UGX {{ dashboard_data.total_billed|subtract:dashboard_data.total_collected|intcomma }}
Fees pending
Monthly Collection vs Expenditure Trend
Budget Distribution
Recent Expenditures
{% for expenditure in recent_expenditures %} {% empty %} {% endfor %}
Date Description Amount Status
{{ expenditure.date_incurred|date:"M d" }} {{ expenditure.description|truncatechars:30 }} UGX {{ expenditure.amount|intcomma }} {{ expenditure.payment_status }}
No recent expenditures
Pending Approvals
{% for approval in pending_approvals %} {% empty %} {% endfor %}
Department Amount Approver Level
{{ approval.expenditure.budget_item.department }} UGX {{ approval.expenditure.amount|intcomma }} {{ approval.current_approver.get_full_name|default:approval.current_approver.username }} {{ approval.approval_level }}/{{ approval.max_approval_level }}
No pending approvals
{% else %}

No Data Available

Please select an academic year and term to view dashboard data.

Setup Financial Data
{% endif %}
{% endblock %}