{% extends "base.html" %} {% block title %}Expenses{% endblock %} {% block content %}

Expenses

Track and manage operational costs

Categories Add Expense
{% for e in expenses %} {% empty %} {% endfor %}
Building Category Amount Status Date Actions
{{ e.building.name }} {{ e.category.name|default:"-" }} KES {{ e.amount|floatformat:2 }} {% if e.status == "approved" %} Approved {% elif e.status == "rejected" %} Rejected {% else %} Pending {% endif %} {{ e.expense_date|date:"M d, Y" }} {% if user.role == "landlord" and e.status == "pending" %} {% else %} {% endif %}

No expenses recorded yet

{% endblock %}