{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Entwurf prüfen

Status: {{ draft.get_status_display }} {% if draft.published_claim %} · Veröffentlichte Behauptung öffnen {% endif %}

{% if draft.error_message %}
{{ draft.error_message }}
{% endif %}
{% csrf_token %}
{{ form.category_choice }}
{{ form.new_category_name }} {{ form.new_category_description }} {{ form.new_category_icon }}

{{ form.title }}
{{ form.claim_status }}
{{ form.short_answer }}
{{ form.detailed_explanation }}
{{ form.tags_text }}
{{ form.sources_json }}
{{ form.counter_arguments_json }}
{% if draft.status != 'published' %} {% endif %}

Konversation

{% for msg in draft.conversation %}
{% if msg.role == 'user' %}Sie{% else %}Assistent{% endif %}: {{ msg.content|linebreaksbr }}
{% empty %}

Noch keine Nachrichten.

{% endfor %}
{% if draft.uploaded_file %}

Datei: {{ draft.uploaded_file.name }}

{% endif %} {% if draft.article_url %}

Artikel öffnen

{% endif %} {% if draft.status != 'published' %}
{% csrf_token %}

Überarbeiten lassen

{{ refine_form.refinement }}
{% endif %}
{% endblock %}