{% extends 'base.html' %} {% block main_title %} Journal {% endblock %} {% block content_header %} ← Back to accounts {% endblock %} {% block content %}
{% if transactions %} {% for tx_id, tx in transactions %} {% endfor %}
# Date Amount ({{CURRENCY_SYMBOL[company.accounts_currency_code]}}) Narrative
Transaction {{order_recorded(tx_id)}} {{tx.total_amount(formatted=True)}} {{tx.narrative}}
{% else %}
No transaction found.
{% endif %}
{% endblock %}