bloat/templates/userlist.tmpl

12 lines
229 B
Cheetah
Raw Normal View History

2020-01-14 16:57:16 +00:00
{{with .Data}}
2020-10-25 11:36:00 +00:00
<div>
2019-12-26 09:11:24 +00:00
{{range .}}
2022-02-11 11:18:02 +00:00
{{template "userlistitem.tmpl" (WithContext . $.Ctx)}}
2020-07-28 14:01:32 +00:00
{{else}}
<div class="no-data-found">No data found</div>
2019-12-26 09:11:24 +00:00
{{end}}
</div>
2020-07-28 14:01:32 +00:00
{{else}}
<div class="no-data-found">No data found</div>
2020-01-14 16:57:16 +00:00
{{end}}