Enha: shorter sse patience; style cleaning

This commit is contained in:
Grail Finder
2025-07-16 07:34:44 +03:00
parent 123d6c240f
commit ccf0b8538f
7 changed files with 22 additions and 27 deletions

11
components/journal.html Normal file
View File

@ -0,0 +1,11 @@
{{define "journal"}}
<div id="systembox" class="overflow-y-auto max-h-96 border-2 border-gray-300 p-4 rounded-lg space-y-2">
bot journal: <br>
<ul>
{{range .LogJournal}}
<li>{{.Username}}: {{.Entry}}</li>
{{end}}
</ul>
</div>
{{end}}