{% extends 'base.html' %} {% block main_title %} Transaction {{order_recorded}} {% endblock %} {% block content_header %} ← Back to journal {% endblock %} {% block content %}
{% for line in transaction.lines %} {% endfor %}
Account Dr. Account Cr. Amount ({{CURRENCY_SYMBOL[company.accounts_currency_code]}})
{{accounts_chart.account_codes[line.account_dr_code].pretty_name()}} {{accounts_chart.account_codes[line.account_cr_code].pretty_name()}} {{line.amount.amount(True)}}
Total Amount: {{transaction.total_amount(True)}}
{% if transaction.narrative %}

{{transaction.narrative}}

{% else %}

No narrative.

{% endif %}
{% if transaction.comments %}

{{transaction.comments}}

{% else %}

No comments.

{% endif %}
Attachments
{% if transaction.attachments %} {% for file in transaction.attachments %}
- {{file.filename}}
{% endfor %} {%else%}

No attachments.

{%endif%}
Transaction ID: {{transaction.id}}
Record date:
Path on disk (clik to copy): {{transaction.get_tx_path(True)}}
{% endblock %}