{% extends "base.html" %} {% block title %}Task {{ task.task_id }} - Dashboard{% endblock %} {% block body %}

Task: {{ task.task_id }}

Subject
{{ task.display_title }}
Repository
{{ task.repo_id or '-' }}
Sender
{{ task.sender or '-' }}
{% if task.conversation_id %} {% endif %}
Status
{% include "components/task_status_badge.html" %}
{% include "components/action_buttons.html" %}
{% if task.todos and is_active %}
{% include "components/todo_progress.html" with context %}
{% elif is_active %}
{% endif %}
{% include "components/task_details_card.html" %}
{{ replies_section|safe }}
{% if is_active %}
Connecting...
{% endif %} {% endblock %} {% block scripts %} {% if is_active %} {% endif %} {% endblock %}