- | {{ transaction_model.timestamp }} |
- {{ transaction_model.account_code }} |
- {{ transaction_model.account_name }} |
- {% if transaction_model.entity_unit_name %}{{ transaction_model.entity_unit_name }}{% endif %} |
- {% if transaction_model.is_credit %}${{ transaction_model.amount | currency_format }}{% endif %} |
- {% if transaction_model.is_debit %}${{ transaction_model.amount | currency_format }}{% endif %} |
- {% if transaction_model.description %}{{ transaction_model.description }}{% endif %} |
+ {{ transaction_model.timestamp }} |
+ {{ transaction_model.account_code }} |
+ {{ transaction_model.account_name }} |
+ {% if transaction_model.entity_unit_name %}{{ transaction_model.entity_unit_name }}{% endif %} |
+ {% if transaction_model.is_credit %}${{ transaction_model.amount | currency_format }}{% endif %} |
+ {% if transaction_model.is_debit %}${{ transaction_model.amount | currency_format }}{% endif %} |
+ {% if transaction_model.description %}{{ transaction_model.description }}{% endif %} |
{% endfor %}
- |
- {% trans 'Total' %} |
- {% currency_symbol %}{{ total_credits | currency_format }} |
- {% currency_symbol %}{{ total_debits | currency_format }} |
- |
+ |
+ {% trans 'Total' %} |
+ {% currency_symbol %}{{ total_credits | currency_format }} |
+ {% currency_symbol %}{{ total_debits | currency_format }} |
+ |