{% extends "base.html" %} {% block title %}Import Transactions{% endblock %} {% block page_title %}Import CSV{% endblock %} {% block topbar_actions %} Settings {% endblock %} {% block content %}
date,type,description,category,account,amount,notes
2025-01-15,expense,Groceries,Food & Dining,Checking,85.50,Weekly shop
2025-01-16,income,Salary,Salary,Checking,3000.00,
| Date | Type | Description | Category | Account | Amount |
|---|---|---|---|---|---|
| {{ row.date.strftime('%b %d, %Y') }} | {{ row.transaction_type | title }} | {{ row.description }} | {{ row.category_name or '—' }} {% if row.category_name and not row.category_id %} ⚠ {% endif %} | {{ row.account_name or '—' }} {% if not row.account_id %} ⚠ {% endif %} | {{ row.amount | currency }} |
| ... and {{ (preview | length) - 20 }} more rows | |||||