bd4b226953
/sendlog -> /deliveries, /queue -> /mail-queue, /logtail -> /system-log, along with the HTMX polling fragments under each. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
7 lines
267 B
HTML
7 lines
267 B
HTML
{{define "queue_body"}}
|
|
<div id="queue-body" hx-get="/mail-queue/body" hx-trigger="every 5s" hx-swap="outerHTML">
|
|
{{if .Error}}<p class="error">{{.Error}}</p>{{end}}
|
|
<span class="code">{{if .Output}}{{.Output}}{{else}}Queue is empty.{{end}}</span>
|
|
</div>
|
|
{{end}}
|