Skip to content
Snippets Groups Projects
Commit 62ccfc7b authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Hide the search term message if nothing provided

parent f34dbc92
No related branches found
No related tags found
No related merge requests found
...@@ -2,5 +2,7 @@ ...@@ -2,5 +2,7 @@
{% block page_header %} {% block page_header %}
<h3>Search Results</h3> <h3>Search Results</h3>
<h5>There are {{ object_list|length }} results for: {{ search_term }}</h5> {% if search_term %}
<h5>There are {{ object_list|length }} results for: {{ search_term }}</h5>
{% endif %}
{% endblock %} {% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment