mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 04:29:21 +02:00
Fix empty list message on search page
This commit is contained in:
parent
b5758986c6
commit
9cd9e8bc7c
|
@ -21,7 +21,7 @@
|
|||
{{range .Statuses}}
|
||||
{{template "status.tmpl" (WithContext . $.Ctx)}}
|
||||
{{else}}
|
||||
<div class="no-data-found">No data found</div>
|
||||
{{if .Q}}<div class="no-data-found">No data found</div>{{end}}
|
||||
{{end}}
|
||||
{{end}}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
{{range .Statuses}}
|
||||
{{template "status.tmpl" (WithContext . $.Ctx)}}
|
||||
{{else}}
|
||||
<div class="no-data-found">No data found</div>
|
||||
{{if .Q}}<div class="no-data-found">No data found</div>{{end}}
|
||||
{{end}}
|
||||
|
||||
<div class="pagination">
|
||||
|
|
Loading…
Reference in New Issue