Files
htmx-go-todo/templates/count.html
Emanuel Turis d1f37d7b0e Changes
2023-10-20 07:46:32 +03:00

16 lines
326 B
HTML

{{ define "TotalCount" }}
<p id="total" {{ if .SwapOOB }}hx-swap-oob="innerHTML:#total"{{ end }}>
Total tasks:
{{ .Count }}
</p>
{{ end }}
{{ define "CompletedCount" }}
<p
id="completed"
{{ if .SwapOOB }}hx-swap-oob="innerHTML:#completed"{{ end }}
>
Completed tasks: {{ .Count }}
</p>
{{ end }}