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>
17 lines
525 B
HTML
17 lines
525 B
HTML
<ul class="{{ ul_class }}">
|
|
{% for opt in options %}
|
|
<li class="{{ li_class }}">
|
|
<div class="{{ div_class }}">
|
|
<input id="{{ opt.id }}"
|
|
type="radio"
|
|
value="{{ opt.value }}"
|
|
name="{{ name }}"
|
|
class="{{ input_class }}"
|
|
{{ input_attrs|safe }}
|
|
{% if opt.checked %}checked{% endif %}>
|
|
<label for="{{ opt.id }}" class="{{ label_class }}">{{ opt.content|safe }}</label>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|