aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-07-31 21:04:05 -0400
committerBobby <[email protected]>2023-07-31 21:04:05 -0400
commitee777e041132206014b6be397d7c8d9a1d015265 (patch)
tree422d99d17b047e6c0c1aef3be8fe8b9f19fed032 /templates
parent0eb434ebceba0088b78679243c58d16eb1cf2259 (diff)
downloadthatcomputerscientist-ee777e041132206014b6be397d7c8d9a1d015265.tar.xz
thatcomputerscientist-ee777e041132206014b6be397d7c8d9a1d015265.zip
used better terminology for no results
Diffstat (limited to 'templates')
-rw-r--r--templates/blog/search.html6
1 files 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 %}
- <p>No posts found.</p>
+ <p>No matching posts found.</p>
{% endif %}
{% endif %}
@@ -46,7 +46,7 @@
{% if users|length != 0 %}
{% include 'blog/partials/search/user_list.html' %}
{% else %}
- <p>No users found.</p>
+ <p>No matching users found.</p>
{% endif %}
{% endif %}
@@ -55,7 +55,7 @@
{% if comments|length != 0 %}
{% include 'blog/partials/search/comment_list.html' %}
{% else %}
- <p>No comments found.</p>
+ <p>No matching comments found.</p>
{% endif %}
{% endif %}