blob: f206397875e3436b929934cc0b50ce375f7a374c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{{with .Data}}
<div>
{{range .}}
{{template "userlistitem.tmpl" (WithContext . $.Ctx)}}
{{else}}
<div class="no-data-found">No data found</div>
{{end}}
</div>
{{else}}
<div class="no-data-found">No data found</div>
{{end}}
|