Add transaction ID column to transactions page

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 <noreply@anthropic.com>
This commit is contained in:
AJ
2025-10-12 14:19:51 -04:00
parent 3f97b34c54
commit 3b2978dc9b

View File

@@ -140,6 +140,7 @@
<table class="table table-hover table-sm mb-0">
<thead>
<tr>
<th style="width: 70px;">ID</th>
<th style="width: 110px;">Date</th>
<th>Name</th>
<th>Memo</th>
@@ -153,6 +154,7 @@
@foreach (var t in Model.Transactions)
{
<tr>
<td class="small text-muted">#@t.Id</td>
<td>@t.Date.ToString("yyyy-MM-dd")</td>
<td>
<div class="d-flex align-items-center gap-2">