From 91b13b44142bf2565e308ba3bd68988554591bd6 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 21:00:33 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20Micro-UX=20and=20acce?= =?UTF-8?q?ssibility=20improvements=20for=20list=20views?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change enhances the shared list template to provide a more delightful and accessible experience: - Modernized search bar layout using DaisyUI 'join' component. - Added a "Clear Search" button for quick query reset. - Implemented a "No results found" empty state row for better feedback. - Added full keyboard support for table sorting (Tab, Enter/Space). - Added ARIA attributes (role="button", aria-sort, aria-label) to table headers. - Normalized line endings to LF for the shared template. Co-authored-by: Woschj <81321922+Woschj@users.noreply.github.com> --- app/templates/shared/list_base.html | 813 +++++++++++++++------------- 1 file changed, 435 insertions(+), 378 deletions(-) diff --git a/app/templates/shared/list_base.html b/app/templates/shared/list_base.html index c89a7b4..9ca6a5e 100755 --- a/app/templates/shared/list_base.html +++ b/app/templates/shared/list_base.html @@ -1,382 +1,439 @@ -{% extends "base.html" %} - -{% block content %} -
- -
-
- -
-
+{% extends "base.html" %} + +{% block content %} +
+ +
+
+ +
+
-
- + - -
-
- - - {% block actions %}{% endblock %} -
- - -
- {% block filters %}{% endblock %} -
-
-
- - -
-
-
- - - - {% block table_headers %}{% endblock %} - - - - {% block table_rows %}{% endblock %} - -
-
-
-
- - - {% if help_title or help_items %} -
-
-

- - {{ help_title or 'Hilfe' }} -

- {% if help_text %} -

{{ help_text }}

- {% endif %} - {% if help_items %} -
    - {% for item in help_items %} -
  • {{ item }}
  • - {% endfor %} -
- {% endif %} -
-
- {% endif %} -
- - - - - - + + +
+
+ + + {% block actions %}{% endblock %} +
+ + +
+ {% block filters %}{% endblock %} +
+
+
+ + +
+
+
+ + + + {% block table_headers %}{% endblock %} + + + + {% block table_rows %}{% endblock %} + + + + +
+
+
+
+ + + {% if help_title or help_items %} +
+
+

+ + {{ help_title or 'Hilfe' }} +

+ {% if help_text %} +

{{ help_text }}

+ {% endif %} + {% if help_items %} + + {% endif %} +
+
+ {% endif %} + + + + + + + {% endblock %} \ No newline at end of file