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

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

{% endblock %} {% block content %}

The transaction was saved successfully.

Transaction Submission

{{ transaction.merchant }}

{{ transaction.transaction_date }}

{% for subtransaction in subtransactions %}
{{ subtransaction['note'] }}
${{ subtransaction['subtotal']|currency }}
{% endfor %} {% if subtransactions|length > 1 %}
Total:
${{ transaction.total|currency }}
{% endif %}
Card:
{{ transaction.statement.card.account.bank.bank_name }} ****-{{ transaction.statement.card.last_four_digits }}
Statement Date:
{{ transaction.statement.issue_date }}
{% if g.user %}
Update this transaction Create a new transaction Create a new transaction on this statement See the statement for this transaction See statement history See transaction history {% with reconciliation_info = session.get('reconciliation_info', None) %} {% if reconciliation_info %} Return to the in-progress statement reconciliation {% endif %} {% endwith %}
{% endif %}
{% endblock %}