bloat/templates/userlist.tmpl

12 lines
229 B
Cheetah
Raw Normal View History

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