{% extends "partials/base.html" %} {% load static %} {% block content %}
{% block title %} {% include "partials/title.html" with title="Expense" text="Dashboard" textone="Finance & Accounts" texttwo="Expense" %} {% endblock title %}

Expense List

{% for record in expenses %} {% endfor %}
ID Expense Name Description Category Date Amount Invoice No Payment Method Action
{{record.ID}} {{record.Expense_Name}} {{record.Description}} {{record.Category}} {{record.Date}} {{record.Amount}} {{record.Invoice_No}} {{record.Payment_Method}}
{% endblock content %}