{% extends "base.html" %} {% block title %}Plaid Sync Preview{% endblock %} {% block page_title %}Sync Preview — {{ item.institution_name }}{% endblock %} {% block content %}
{{ item.institution_name }}
{{ count }} of {{ count }} transactions selected
Cancel
Bulk set selected:
{% set ns = namespace(cur_acct_id=None) %} {% for txn in preview %} {% set pa = plaid_accounts.get(txn.plaid_account_id) %} {% set acct_id = pa.pfm_account_id if pa else None %} {% if acct_id != ns.cur_acct_id %} {% if ns.cur_acct_id is not none %}{% endif %} {% set ns.cur_acct_id = acct_id %}
{% if pa and pa.pfm_account %}{{ pa.pfm_account.name }}{% else %}Unknown Account{% endif %}
{% if pa %}
{{ pa.display_name }} · {{ pa.account_type | title }}
{% endif %}
{% endif %} {% endfor %} {% if ns.cur_acct_id is not none %}
Date Description Type Category Amount
{{ txn.date.strftime('%b %d, %Y') }} {{ txn.description }} {% if txn.transaction_type == 'income' %}+{% else %}-{% endif %}{{ txn.amount | currency }}
{% endif %}
{% endblock %}