Files
MiauInv/frontend/htmx/contents/dash/projects.html
2026-06-05 19:00:48 +02:00

21 lines
270 B
HTML

{{ define "content" }}
<h1>Projekte</h1>
<button
hx-get="/projects/new"
hx-target="#modal"
>
Neues Projekt
</button>
<div
hx-get="/api/projects"
hx-trigger="load"
hx-target="this"
>
</div>
<div id="modal"></div>
{{ end }}