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

Expenses

Total: {{ total_expenses|floatformat:0 }} XAF

Add Expense
Clear
{% for expense in expenses %} {% empty %} {% endfor %}
DateCategoryDescriptionVendorAmountMethodApproved ByActions
{{ expense.expense_date|date:"d M Y" }} {{ expense.category.name }} {{ expense.description }} {{ expense.vendor|default:"—" }} {{ expense.amount|floatformat:0 }} XAF {{ expense.get_payment_method_display }} {% if expense.approved_by %}{{ expense.approved_by.get_full_name }}{% else %}Pending{% endif %}
No expenses found.
{% if is_paginated %} {% endif %}
{% endblock %}