Files
integreat/resources/templates/transaction-edit/details-panel.html
Bryce 638a75925c style(templates): format Selmer .html templates for readability
Many templates were minified onto a single line. Reformatted every template under
resources/templates/ with djLint (django profile, 2-space indent) so the markup,
{% %} blocks, and {{ }} interpolations are human-readable, plus hand-split the two
multi-<span> option partials (invoice-option / rule-option). Pure reflow — no markup,
tag, or text content changed (the only content-adjacent delta is harmless trailing
whitespace inside single-interpolation elements). link.html / panel-empty.html stay on
one line (single element). resources/public/index.html left as-is (already readable,
non-template static).

Full e2e suite 72/72 green (no rendering regressions).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-26 09:20:46 -07:00

40 lines
1.5 KiB
HTML

{# Read-only transaction summary shown in the modal's left side panel. #}
<div class="p-4 space-y-4">
<h3 class="text-sm font-semibold text-gray-900 uppercase tracking-wider">Details</h3>
<div class="space-y-3">
<div>
<div class="text-xs font-medium text-gray-500">Amount</div>
<div class="text-sm font-medium text-gray-900">{{ amount }}</div>
</div>
<div>
<div class="text-xs font-medium text-gray-500">Date</div>
<div class="text-sm text-gray-900">{{ date }}</div>
</div>
<div>
<div class="text-xs font-medium text-gray-500">Bank Account</div>
<div class="text-sm text-gray-900">{{ bank_account }}</div>
</div>
<div>
<div class="text-xs font-medium text-gray-500">Post Date</div>
<div class="text-sm text-gray-900">{{ post_date }}</div>
</div>
<div>
<div class="text-xs font-medium text-gray-500">Description</div>
<div class="text-sm text-gray-900 truncate cursor-help"
title="{{ description_original }}">{{ description_simple }}</div>
</div>
<div>
<div class="text-xs font-medium text-gray-500">Check Number</div>
<div class="text-sm text-gray-900">{{ check_number }}</div>
</div>
<div>
<div class="text-xs font-medium text-gray-500">Status</div>
<div class="text-sm text-gray-900">{{ status }}</div>
</div>
<div>
<div class="text-xs font-medium text-gray-500">Transaction Type</div>
<div class="text-sm text-gray-900">{{ type }}</div>
</div>
</div>
</div>