{% extends "base.html" %} {% block title %}Task #{{ task.id }}{% endblock %} {% block content %}
Details
{% if task.telegram_chat_id %} {% endif %} {% if task.parent_task_id %} {% endif %} {% if task.reply_to %} {% endif %}
Status {% if task.status == 'pending' %} Pending {% elif task.status == 'in_progress' %} In Progress {% elif task.status == 'completed' %} Done {% elif task.status == 'error' %} Fehler {% else %} {{ task.status }} {% endif %}
Typ{{ task.type or '—' }}
Agent{{ task.assigned_agent or task.agent_key or '—' }}
Erstellt von{{ task.created_by or '—' }}
Erstellt{{ task.created_at or '—' }}
Abgeschlossen{{ task.completed_at or '—' }}
Telegram{{ task.telegram_user or '' }} {{ task.telegram_chat_id }}
Parent Task#{{ task.parent_task_id }}
Reply-To{{ task.reply_to }}
Anfrage / Beschreibung
{% if task.description %}
{{ task.description }}
{% else %} Keine Beschreibung. {% endif %}
Agent-Antwort / Log
{% if task.response %} {% endif %}
{% if task.status == 'in_progress' %}
Task läuft gerade... Seite wird alle 5s aktualisiert.
{% endif %} {% if task.response %}
{{ task.response }}
{% elif task.status != 'in_progress' %}
Noch keine Antwort vorhanden.
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}