{% extends 'base.html' %} {% load humanize %} {% block title %}Transaction {{ transaction.reference_no }} - 3ncount{% endblock %} {% block page_title %}Transaction Details{% endblock %} {% block page_actions %}
{% endblock %} {% block content %}{{ transaction.reference_no }}| Account | Description | Debit (RM) | Credit (RM) |
|---|---|---|---|
|
{{ line.account.code }}
{{ line.account.name }}
|
{{ line.description|default:"—" }} | {% if line.debit_amount > 0 %} {{ line.debit_amount|floatformat:2|intcomma }} {% else %} — {% endif %} | {% if line.credit_amount > 0 %} {{ line.credit_amount|floatformat:2|intcomma }} {% else %} — {% endif %} |