agent-conversations.html

10 lines
1 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-slate-500 hover:bg-slate-50 hover:text-slate-700 transition-colors truncate"
   hx-get="/agent/conversations/{{$conv.ID}}" hx-target="#drawer-messages" hx-swap="innerHTML">
    {{$conv.Title}}
</a>
{{end}}
{{if not .}}
<p class="text-xs text-slate-300 px-3 py-2">No conversations yet</p>
{{end}}