{% extends "base.html" %} {% load i18n static %} {% block title %}{{ _("Transactions") }}{% endblock title %} {% block content %}
| {% trans "#" %} | {% trans "Timestamp" %} | {% trans "Account Name" %} | {% trans "Account Code" %} | {% trans "Debit" %} | {% trans "Credit" %} | {% trans "Description" %} |
|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ transaction.created|date}} | {{ transaction.account.name }} | {{ transaction.account.code }} | {% if transaction.tx_type == "debit" %} {{ transaction.amount }} {{ CURRENCY }}{% endif %} | {% if transaction.tx_type == "credit" %} {{ transaction.amount }} {{ CURRENCY }}{% endif %} | {{ transaction.description }} |
| {% trans "No Transactions Found" %} | ||||||