From ee777e041132206014b6be397d7c8d9a1d015265 Mon Sep 17 00:00:00 2001 From: Bobby Date: Mon, 31 Jul 2023 21:04:05 -0400 Subject: used better terminology for no results --- templates/blog/search.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/blog/search.html b/templates/blog/search.html index d5bf9812..33a41b14 100644 --- a/templates/blog/search.html +++ b/templates/blog/search.html @@ -36,7 +36,7 @@ {% if posts|length != 0 %} {% include 'blog/partials/search/post_list.html' %} {% else %} -

No posts found.

+

No matching posts found.

{% endif %} {% endif %} @@ -46,7 +46,7 @@ {% if users|length != 0 %} {% include 'blog/partials/search/user_list.html' %} {% else %} -

No users found.

+

No matching users found.

{% endif %} {% endif %} @@ -55,7 +55,7 @@ {% if comments|length != 0 %} {% include 'blog/partials/search/comment_list.html' %} {% else %} -

No comments found.

+

No matching comments found.

{% endif %} {% endif %} -- cgit v1.2.3