{% extends "../base.html" %} {% load crispy_forms_tags %} {% load humanize %} {% block page_title %}Expenditures Management{% endblock page_title %} {% block content %} {% with effective_role=active_role|default:user.staff_account.role.name|default:""|lower %}
| {% if effective_role != "head master" and effective_role != "head teacher" and effective_role != "headteacher" and effective_role != "headmaster" %} {% endif %} | # | Budget Item | Description | Vendor | Amount (UGX) | Date Incurred | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {% if effective_role != "head master" and effective_role != "head teacher" and effective_role != "headteacher" and effective_role != "headmaster" %} {% endif %} | {{ forloop.counter }} | {% if expenditure.budget_item %} {{ expenditure.budget_item }} {% else %} N/A {% endif %} | {{ expenditure.description|truncatechars:50 }} | {% if expenditure.vendor %} {{ expenditure.vendor }} {% else %} N/A {% endif %} | {{ expenditure.amount|intcomma }} | {{ expenditure.date_incurred|date:"Y-m-d" }} | {{ expenditure.payment_status }} | Items {% if expenditure.approved_by %} Approved {% if effective_role != "head master" and effective_role != "head teacher" and effective_role != "headteacher" and effective_role != "headmaster" %} {% endif %} {% else %} {% if effective_role != "head master" and effective_role != "head teacher" and effective_role != "headteacher" and effective_role != "headmaster" %} {% endif %} Pending Approval {% endif %} |
Showing 1 to 10 of {{ expenditures|length }} entries
Get started by adding your first expenditure.