agent-conversations.html
10 lines1
2
3
4
5
6
7
8
9
10
{{range $conv := .}}
<a href="/agent/conversations/{{$conv.ID}}"
class="block rounded-lg px-3 py-2 text-sm text-base-content/40 hover:bg-base-100/30 hover:text-base-content/70 transition-colors truncate"
hx-get="/agent/conversations/{{$conv.ID}}" hx-target="#chat-messages" hx-swap="innerHTML">
{{$conv.Title}}
</a>
{{end}}
{{if not .}}
<p class="text-xs text-base-content/15 px-3 py-2">No conversations yet</p>
{{end}}