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>
14 lines
495 B
HTML
14 lines
495 B
HTML
{# Bulk-code modal body: vendor field (a change repopulates the default account via a
|
|
whole-form swap), status select, and the expense-account grid. #}
|
|
<div class="space-y-4 p-4">
|
|
<div class="grid grid-cols-2 gap-4">
|
|
<div {{ vendor_changed_attrs|safe }}>{{ vendor_field|safe }}
|
|
</div>
|
|
<div>{{ status_field|safe }}</div>
|
|
<div class="col-span-2 pt-4">
|
|
<h3 class="text-lg font-medium mb-3">Expense Accounts</h3>
|
|
{{ accounts_field|safe }}
|
|
</div>
|
|
</div>
|
|
</div>
|