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>
9 lines
282 B
HTML
9 lines
282 B
HTML
<div id="interop-smoke" class="p-2">
|
|
<h3>{{ title }}</h3>
|
|
{# a Hiccup-rendered component, passed in pre-rendered and emitted verbatim #}
|
|
{{ hiccup_frag|safe }}
|
|
<input x-ref="input"
|
|
x-model="value.value"
|
|
@keydown.down.prevent.stop="tippy?.show()" />
|
|
</div>
|