{#- Sparkline partial — TIMESERIES-02 / D-32-10 / D-32-11. Inputs (passed via {% include with context %} or set in a {% with %} block): points : list of (x, y) tuples in SVG coordinates (pre-computed in server.py) archetype : display name for aria-label point_values : list[float] aligned with points — used for hover point_weeks : list[str] aligned with points — ISO week labels for <title> -#} <svg width="120" height="28" role="img" aria-label="Trajectory for {{ archetype }}"> <title>Trajectory for {{ archetype }} {%- if points|length >= 2 %} {%- endif %} {%- for x, y in points %} {{ "%.2f"|format(point_values[loop.index0]) }} ({{ point_weeks[loop.index0] }}) {%- endfor %}