{#- chirp-ui: Settings row — label | status badge | detail Three-column field set for setup targets, health checks, validation summaries. Use settings_row_list as container for aligned columns across rows. Usage: from "chirpui/settings_row.html" import settings_row_list, settings_row call settings_row_list() settings_row("Cursor IDE", status="Configured", detail="dori setup cursor") settings_row("Skills directory", status="ok", detail="/path/to/skills") end -#} {% from "chirpui/badge.html" import badge %} {% def settings_row_list(cls="", hoverable=false, divided=false, relaxed=false) %} {% set mods = "" %} {% if hoverable %}{% set mods = mods ~ " chirpui-settings-row-list--hoverable" %}{% end %} {% if divided %}{% set mods = mods ~ " chirpui-settings-row-list--divided" %}{% end %} {% if relaxed %}{% set mods = mods ~ " chirpui-settings-row-list--relaxed" %}{% end %}