{% extends 'layout.html' %} {% block header %}

{% block title %} Transaction {{ 'Updated' if update else 'Submitted' }} {% endblock %}

{% endblock %} {% block content %}

The transaction was saved successfully.


Card: {{ transaction.statement.card.account.bank.bank_name }} ****-{{ transaction.statement.card.last_four_digits }}

Date: {{ transaction.transaction_date }}

Merchant: {{ transaction.merchant }}

{% if subtransactions|length > 1 %}

Total: ${{ transaction.total|currency }}

{% endif %} {% for subtransaction in subtransactions %}

Amount: ${{ subtransaction['subtotal']|currency }}

Note: {{ subtransaction['note'] }}

{% endfor %}

Statement Date: {{ transaction.statement.issue_date }}

{% if g.user %}
See the statement for this transaction
See transaction history
Update this transaction
Create a new transaction
Create a new transaction on this statement {% with reconciliation_info = session.get('reconciliation_info', None) %} {% if reconciliation_info %}
Return to the in-progress statement reconciliation {% endif %} {% endwith %} {% endif %}
{% endblock %}