{% extends 'base.html' %} {% block title %}{{ account.name }}{% endblock %} {% block content %}

{{ account.name }}

← Back
Current Balance
{{ business.currency }} {{ account.balance|floatformat:0 }}
{{ account.get_account_type_display }}

Transaction History

{% for tx in transactions %} {% empty %} {% endfor %}
TypeDirectionAmountDescriptionDate
{{ tx.get_tx_type_display }} {% if tx.direction == 'in' %} ↑ In {% else %} ↓ Out {% endif %} {{ business.currency }} {{ tx.amount|floatformat:0 }} {{ tx.description|default:"—" }} {{ tx.date|date:"d M Y" }}
No transactions yet
{% endblock %}