Files
Faktenkompass/templates/admin/claims/claim/change_form.html
T
Pirmin Hinderling (fedora) 16428f2c16 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>
2026-07-07 22:50:53 +02:00

18 lines
597 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "admin/change_form.html" %}
{% load i18n %}
{% block content %}
{% if original and original.pk %}
<div class="fk-claim-meta-links">
<a href="{{ original.get_absolute_url }}" target="_blank" rel="noopener">↗ Auf Website ansehen</a>
<a href="{% url 'admin:claims_claimdraft_assistant' %}"> Fakten-Assistent</a>
</div>
{% else %}
<div class="fk-claim-help">
Neue Behauptung anlegen: zuerst Titel und Kurzantwort ausfüllen, dann speichern.
Nachweise, Quellen und mögliche Antworten können danach ergänzt werden.
</div>
{% endif %}
{{ block.super }}
{% endblock %}