db3558872e
Modernisiert die öffentliche Oberfläche mit Inter, Dark Mode und Live-Suche, ergänzt KI-gestützte Entwürfe im Admin mit Nachweis-Uploads und dokumentiert Daphne/Nginx für den Serverbetrieb. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
613 B
HTML
13 lines
613 B
HTML
{% if claims is not None %}
|
|
<div class="d-flex justify-content-between align-items-center mb-2">
|
|
<span class="small text-muted">{{ result_count }} Ergebnis{% if result_count != 1 %}se{% endif %}</span>
|
|
{% if query or category_slug or status %}
|
|
<a href="{% url 'claims:search' %}" class="small text-muted text-decoration-none">Zurücksetzen</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% include "claims/partials/claim_list.html" with claims=claims show_category=True empty_message="Keine Ergebnisse." %}
|
|
{% else %}
|
|
<p class="text-muted text-center py-4 mb-0 small">Suchbegriff oder Filter eingeben…</p>
|
|
{% endif %}
|