{% extends "base.html" %} {% block title %}Sync Preview{% endblock %} {% block page_title %}Sync Preview — {{ ta.account_name }}{% endblock %} {% block content %}
| 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 }} |