{% extends "base.html" %} {% block title %}My Khata Account - SwiftCart{% endblock %} {% block content %}
{{ user.username.capitalize() }}

{{ user.email }}


📘 My Khata (Ledger Account)

{% if not user.phone %}
Action Required: Please update your phone number in your profile to link with your store's Khata account.
{% else %} {% if khata %}

Current Balance

{% if khata.balance > 0 %}

{{ currency }} {{ "{:,.0f}".format(khata.balance) }} (Payable)

{% elif khata.balance < 0 %}

{{ currency }} {{ "{:,.0f}".format(khata.balance | abs) }} (In Credit)

{% else %}

{{ currency }} 0

{% endif %}

Account Name: {{ khata.customer_name }}

{{ khata.phone }}

Transaction History
{% if transactions %} {% for tx in transactions %} {% endfor %} {% else %} {% endif %}
Date Description Type Amount
{{ tx.date.strftime('%d %b %Y, %I:%M %p') }} {{ tx.description or 'No Description' }} {% if tx.t_type == 'DEBIT' %} Udhaar Taken {% elif tx.t_type == 'CREDIT' %} Payment Made {% else %} {{ tx.t_type }} {% endif %} {% if tx.t_type == 'DEBIT' %}+{% else %}-{% endif %}{{ currency }} {{ "{:,.0f}".format(tx.amount) }}
No transactions found in your Khata yet.
{% else %}
No Khata Account Found

We couldn't find an active store Ledger/Khata account linked to your registered phone number ({{ user.phone }}). If you have an account at our physical store, please ensure the phone number matches.

{% endif %} {% endif %}
{% endblock %}