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

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

{% endblock %} {% block content %}

The transaction was saved successfully.


Card: {{ transaction['bank'] }} ****-{{ transaction['last_four_digits'] }}

Date: {{ transaction['transaction_date'] }}

Vendor: {{ transaction['vendor'] }}

Amount: {{ '${:,.2f}'.format(transaction['amount']) }}

Notes: {{ transaction['notes'] }}

Statement Date: {{ transaction['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 {% endif %}
{% endblock %}