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>
28 lines
889 B
HTML
28 lines
889 B
HTML
<div class="my-4 p-4 bg-blue-50 rounded">
|
|
<h3 class="text-lg font-bold mb-2">Linked Payment{{ external_link|safe }}</h3>
|
|
<div class="space-y-2">
|
|
<div class="flex justify-between">
|
|
<div class="font-medium">Payment #</div>
|
|
<div>{{ number }}</div>
|
|
</div>
|
|
<div class="flex justify-between">
|
|
<div class="font-medium">Vendor</div>
|
|
<div>{{ vendor }}</div>
|
|
</div>
|
|
<div class="flex justify-between">
|
|
<div class="font-medium">Amount</div>
|
|
<div>{{ amount }}</div>
|
|
</div>
|
|
<div class="flex justify-between">
|
|
<div class="font-medium">Status</div>
|
|
<div>{{ status }}</div>
|
|
</div>
|
|
<div class="flex justify-between">
|
|
<div class="font-medium">Date</div>
|
|
<div>{{ date }}</div>
|
|
</div>
|
|
{{ payment_id_hidden|safe }}<div class="mt-4"{{ unlink_attrs|safe }}>{{ unlink_button|safe }}
|
|
</div>
|
|
</div>
|
|
</div>
|