From 608cb8281b5b347d7b4847734f3b274541393009 Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Wed, 23 Jul 2025 15:26:31 -0500 Subject: [PATCH] Fix alert styling and ensure consistent formatting in user results table rendering. --- inventory/templates/search.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inventory/templates/search.html b/inventory/templates/search.html index 21daede..d82e879 100644 --- a/inventory/templates/search.html +++ b/inventory/templates/search.html @@ -11,7 +11,7 @@ ) ) }} {% if not results['inventory']['rows'] and not results['users']['rows'] and not results['worklog']['rows'] %} -
There are no results for "{{ query }}".
+
There are no results for "{{ query }}".
{% endif %} {% endblock %} @@ -35,7 +35,7 @@ {{ tables.render_table( headers = results['users']['headers'], rows = results['users']['rows'], - entry_route = 'user', + entry_route = 'user', title='User Results', id='search-users' )}}