diff --git a/templates/admin/auth/list.tmpl b/templates/admin/auth/list.tmpl
index c162b7b74d..9c283fe3d8 100644
--- a/templates/admin/auth/list.tmpl
+++ b/templates/admin/auth/list.tmpl
@@ -30,6 +30,8 @@
{{DateUtils.AbsoluteShort .CreatedUnix}} |
{{svg "octicon-pencil"}} |
+ {{else}}
+ {{ctx.Locale.Tr "no_results_found"}} |
{{end}}
diff --git a/templates/admin/emails/list.tmpl b/templates/admin/emails/list.tmpl
index b07c6fcc01..8796794aee 100644
--- a/templates/admin/emails/list.tmpl
+++ b/templates/admin/emails/list.tmpl
@@ -66,6 +66,8 @@
+ {{else}}
+ {{ctx.Locale.Tr "no_results_found"}} |
{{end}}
diff --git a/templates/admin/notice.tmpl b/templates/admin/notice.tmpl
index 04a0b64432..4f8783dd42 100644
--- a/templates/admin/notice.tmpl
+++ b/templates/admin/notice.tmpl
@@ -24,6 +24,8 @@
{{DateUtils.AbsoluteShort .CreatedUnix}} |
{{svg "octicon-note" 16}} |
+ {{else}}
+ {{ctx.Locale.Tr "no_results_found"}} |
{{end}}
{{if .Notices}}
diff --git a/templates/admin/org/list.tmpl b/templates/admin/org/list.tmpl
index d0805c85bc..b719d259e0 100644
--- a/templates/admin/org/list.tmpl
+++ b/templates/admin/org/list.tmpl
@@ -66,6 +66,8 @@
{{DateUtils.AbsoluteShort .CreatedUnix}} |
{{svg "octicon-pencil"}} |
+ {{else}}
+ {{ctx.Locale.Tr "no_results_found"}} |
{{end}}
diff --git a/templates/admin/packages/list.tmpl b/templates/admin/packages/list.tmpl
index aa38731d4f..f22600a449 100644
--- a/templates/admin/packages/list.tmpl
+++ b/templates/admin/packages/list.tmpl
@@ -74,6 +74,8 @@
{{DateUtils.AbsoluteShort .Version.CreatedUnix}} |
{{svg "octicon-trash"}} |
+ {{else}}
+ {{ctx.Locale.Tr "no_results_found"}} |
{{end}}
diff --git a/templates/admin/repo/list.tmpl b/templates/admin/repo/list.tmpl
index c4924c3fac..0422705ea9 100644
--- a/templates/admin/repo/list.tmpl
+++ b/templates/admin/repo/list.tmpl
@@ -86,6 +86,8 @@
{{DateUtils.AbsoluteShort .CreatedUnix}} |
{{svg "octicon-trash"}} |
+ {{else}}
+ {{ctx.Locale.Tr "no_results_found"}} |
{{end}}
diff --git a/templates/admin/user/list.tmpl b/templates/admin/user/list.tmpl
index 9b3447f44a..f4609edbbf 100644
--- a/templates/admin/user/list.tmpl
+++ b/templates/admin/user/list.tmpl
@@ -109,6 +109,8 @@
+ {{else}}
+ {{ctx.Locale.Tr "no_results_found"}} |
{{end}}
diff --git a/tests/integration/auth_ldap_test.go b/tests/integration/auth_ldap_test.go
index 62a7d18904..e8b38afeb1 100644
--- a/tests/integration/auth_ldap_test.go
+++ b/tests/integration/auth_ldap_test.go
@@ -283,7 +283,7 @@ func TestLDAPUserSyncWithEmptyUsernameAttribute(t *testing.T) {
htmlDoc := NewHTMLParser(t, resp.Body)
- tr := htmlDoc.doc.Find("table.table tbody tr")
+ tr := htmlDoc.doc.Find("table.table tbody tr:not(.no-results-row)")
assert.Equal(t, 0, tr.Length())
}