{% extends "base.html" %} {% block content %} {% if remaining %}
Need to bulk-clear old transactions?
{% endif %} {% if not transaction %}

All caught up!

Every transaction has been reviewed.

View All Transactions
{% else %}
{{ transaction.date }}
{{ transaction.description }}
${{ transaction.amount | money }}
{% if bnpl_lender and bnpl_matches %}
💳 Looks like a {{ bnpl_lender | title }} payment — which loan is this?
{% for loan in bnpl_matches %}
{% endfor %}
Selecting a loan will mark one payment as made and categorize this as Debt. Or ignore this and categorize manually below.
{% elif bnpl_lender %}
💳 Looks like a {{ bnpl_lender | title }} payment — no active loans found
Want to set up this loan now so future payments get tracked automatically?
{% endif %} {% if suggestion %}
Suggested: {{ suggestion.category }}{% if suggestion.subcategory %} › {{ suggestion.subcategory }}{% endif %}
{% endif %}
{% for cat, subcats in categories.items() %} {% endfor %}
{% endif %} {% endblock %}