155b721438
test / test (push) Has been cancelled
Lay out view, auth, validate, and handlers under internal/web while keeping the cmd/panel API unchanged; update roadmap and changelog for web-split closure. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
302 B
HTML
8 lines
302 B
HTML
{{define "system_log_body"}}
|
|
<div id="system-log-body" data-poll hx-get="/system-log/body" hx-trigger="load" hx-swap="outerHTML">
|
|
{{if .Error}}<p class="error">{{.Error}}</p>{{end}}
|
|
<span class="code">{{if .Lines}}{{range .Lines}}{{.}}
|
|
{{end}}{{else}}No log lines yet.{{end}}</span>
|
|
</div>
|
|
{{end}}
|