Faktenkompass: UI-Rebrand, Admin-Assistent und Produktions-Setup.
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>
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
{% load claims_extras %}
|
||||
<div class="d-flex flex-column gap-2">
|
||||
{% for claim in claims %}
|
||||
<a href="{{ claim.get_absolute_url }}" class="text-decoration-none">
|
||||
<div class="claim-card">
|
||||
<div class="card-body">
|
||||
{% if show_category %}
|
||||
<div class="mb-1">
|
||||
<span class="fk-topic">{{ claim.category.name }}</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="mb-1">{% status_badge claim %}</div>
|
||||
<span class="claim-title d-block">{{ claim.title }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
{% empty %}
|
||||
<p class="text-muted text-center py-4 mb-0">{{ empty_message|default:"Keine Behauptungen gefunden." }}</p>
|
||||
{% endfor %}
|
||||
</div>
|
||||
Reference in New Issue
Block a user