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

Income List

{% for record in accounts_income %} {% endfor %}
ID Income Name Description Source Date Amount Invoice No Payment Method Action
{{ record.ID }} {{ record.Income_Name }} {{ record.Description }} {{ record.Source }} {{ record.Date }} {{ record.Amount }} {{ record.Invoice_No }} {{ record.Payment_Method }}
{% endblock %}