{% extends 'admin/layout.html.twig' %} {% block title %}Income - KitscoApp{% endblock %} {% block page_title %}Income{% endblock %} {% block content %}

{{ incomes|length }} income(s)

Add Income
{# Mobile filter toggle button #}
{# Filter card - hidden on mobile by default, always visible on desktop #}
{% for income in incomes %} {% else %} {% endfor %}
Reference Date Description Amount Actions
{{ income.referenceNumber }} {% if income.isReconciled %} {% endif %} {% if income.isAutoGenerated %} Auto {% endif %} {{ income.incomeDate|date('d M Y') }}

{{ income.description|u.truncate(40) }}

{% if income.customer %}

{{ income.customer.name }}

{% endif %}

{{ income.formattedAmount }}

{% if income.isForeignCurrency %}

{{ income.formattedAmountInTzs }}

{% endif %}

No income found

Add your first income to start tracking.

Add Income
{% endblock %}