Replace counter-arguments with possible answers and unify search inputs.

Models, AI assistant, and UI now show diskussionsfertige Antworten without titles; shared search partial fixes aria-label rendering.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Pirmin Hinderling (fedora)
2026-07-07 22:50:53 +02:00
parent 28aab3b16a
commit 16428f2c16
19 changed files with 237 additions and 101 deletions
+3 -3
View File
@@ -20,12 +20,12 @@
</div>
</div>
<form method="get" class="row g-2 mb-4" data-live-search data-live-target="#category-results">
<form method="get" class="row g-2 mb-4 fk-search-form" data-live-search data-live-target="#category-results">
<div class="col-12 col-sm">
<input type="search" id="q" name="q" class="form-control form-control-sm" placeholder="Suchen…" value="{{ query }}" autocomplete="off">
{% include "claims/partials/search_input.html" with value=query aria_label="Behauptungen durchsuchen" %}
</div>
<div class="col-12 col-sm-auto">
<select id="status" name="status" class="form-select form-select-sm">
<select id="status" name="status" class="form-select fk-search-filter">
<option value="">Alle Status</option>
{% for value, label in status_choices %}
<option value="{{ value }}"{% if status == value %} selected{% endif %}>{{ label }}</option>