bloat/templates/userlist.tmpl
r 1d61f1aa27 Update the default theme
This uses better color contrast and component spacing to improve
legibility. The updated HTML also has better compatibility with browsers
with limited/no CSS support.
2023-12-28 13:27:30 +00:00

12 lines
177 B
Cheetah

{{with .Data}}
<div>
{{range .}}
{{template "userlistitem.tmpl" (WithContext . $.Ctx)}}
{{else}}
<p>No data found</p>
{{end}}
</div>
{{else}}
<p>No data found</p>
{{end}}