From 9cd9e8bc7c9713cf574f809668f09acbb6284a0d Mon Sep 17 00:00:00 2001 From: "r@freesoftwareextremist.com" Date: Sat, 22 Aug 2020 06:48:13 +0000 Subject: Fix empty list message on search page --- templates/search.tmpl | 2 +- templates/usersearch.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/search.tmpl b/templates/search.tmpl index f81c061..a9aa0af 100644 --- a/templates/search.tmpl +++ b/templates/search.tmpl @@ -21,7 +21,7 @@ {{range .Statuses}} {{template "status.tmpl" (WithContext . $.Ctx)}} {{else}} -
No data found
+{{if .Q}}
No data found
{{end}} {{end}} {{end}} diff --git a/templates/usersearch.tmpl b/templates/usersearch.tmpl index 26186c0..a44b679 100644 --- a/templates/usersearch.tmpl +++ b/templates/usersearch.tmpl @@ -13,7 +13,7 @@ {{range .Statuses}} {{template "status.tmpl" (WithContext . $.Ctx)}} {{else}} -
No data found
+{{if .Q}}
No data found
{{end}} {{end}}