{% extends "base.html" %} {% block title %}Transactions{% endblock %} {% block page_title %}Transactions{% endblock %} {% block topbar_actions %} Income Expense Transfer {% endblock %} {% block content %} {% if plaid_review_count > 0 %}
| Date | Description | Category | Account | Amount | Actions | |
|---|---|---|---|---|---|---|
| {{ txn.date.strftime('%b %d, %Y') }} |
{{ txn.description }}
{% if txn.notes %}{{ txn.notes | truncate(60) }} {% endif %}
|
|
{{ txn.account.name if txn.account else '—' }} | {% if txn.transaction_type=='income' %}+{% else %}-{% endif %}{{ txn.amount | currency }} | Edit |
No matching transactions
Try adjusting your filters or search term.
Clear filters {% else %}No {{ tab }} transactions yet
Record your first {{ tab }} to start tracking.
Add {{ tab | title }} {% endif %}