{% extends "base.html" %} {% block title %}Task #{{ task.id }}{% endblock %} {% block content %}
| 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 }} |
{{ task.description }}
{% else %}
Keine Beschreibung.
{% endif %}
{{ task.response }}
{% elif task.status != 'in_progress' %}