{% extends "base.html" %} {% block title %}Sync Preview{% endblock %} {% block page_title %}Sync Preview — {{ ta.account_name }}{% endblock %} {% block content %}
{{ ta.institution_name }} — {{ ta.account_name }}
Mapped to: {{ ta.pfm_account.name }} · {{ count }} transaction(s) found {% if ta.last_sync_date %}· Last sync: {{ ta.last_sync_date.strftime('%b %d, %Y') }}{% endif %}
Cancel {% if count > 0 %}
{% endif %}
{% if preview %}
{% for txn in preview %} {% endfor %}
Date Description Type Category Amount
{{ txn.date.strftime('%b %d, %Y') }} {{ txn.description }} {{ txn.transaction_type | title }} {% if txn.category_id %} {% for cat in [txn.category_id] %} {# Look up category name via the category_id #} {{ txn.notes | replace('Teller:', '') }} {% endfor %} {% else %} Uncategorised {% endif %} {% if txn.transaction_type == 'income' %}+{% else %}-{% endif %}{{ txn.amount | currency }}
{% else %}
All up to date

No new transactions found since last sync.

Back
{% endif %} {% endblock %}