{% extends "base.html" %} {% block content %}

Income Details

{{ income.description }}

Transaction Date

{{ income.date }}

Tax Quarter

{{ income.quarter }}

Description

{{ income.description }}

Category

{{ income.category.name }}

Client/Customer

{% if income.client_name %} {{ income.client_name }} {% else %} Not specified {% endif %}

Invoice Number

{% if income.invoice_number %} {{ income.invoice_number }} {% else %} Not specified {% endif %}

Financial Details

Amount

£{{ income.amount }}

Tax Period

{{ income.quarter }}

{% if income.notes %}

Notes

{{ income.notes }}

{% endif %}
{% endblock %}