From 3b2978dc9b4b48d5933508ad9eef0e1ca211e666 Mon Sep 17 00:00:00 2001 From: AJ Date: Sun, 12 Oct 2025 14:19:51 -0400 Subject: [PATCH] Add transaction ID column to transactions page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added ID column as the first column in the transactions table to make it easy to reference transaction IDs when manually mapping receipts. The ID is displayed with a "#" prefix in a small, muted style. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- MoneyMap/Pages/Transactions.cshtml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MoneyMap/Pages/Transactions.cshtml b/MoneyMap/Pages/Transactions.cshtml index 1e58b40..da1f347 100644 --- a/MoneyMap/Pages/Transactions.cshtml +++ b/MoneyMap/Pages/Transactions.cshtml @@ -140,6 +140,7 @@ + @@ -153,6 +154,7 @@ @foreach (var t in Model.Transactions) { +
ID Date Name Memo
#@t.Id @t.Date.ToString("yyyy-MM-dd")