{% extends "base.html" %} {% block title %}Tasks{% endblock %} {% block content %}

Task Management

Active Operations Center

Active Tasks
{{ tasks|selectattr('status', 'in', ['pending', 'in_progress'])|list|length }} Running
Success Rate
{% set completed = tasks|selectattr('status', 'equalto', 'completed')|list|length %} {% set total = tasks|length %} {% if total > 0 %} {% set rate = (completed / total * 100)|round|int %} {% else %} {% set rate = 0 %} {% endif %} {{ rate }}% {{ completed }}/{{ total }}

Active Tasks

Currently running operations

{% for task in tasks %} {% if task.status in ['pending', 'in_progress'] %}

{{ task.description }}

{% if task.status == 'pending' %} Pending {% elif task.status == 'in_progress' %} In Progress {% endif %}

{{ task.command }}

{% if task.parameters %}

Parameters (click to view)

{% endif %}

Created: {{ task.created_at|format_timestamp }}

{% endif %} {% endfor %}

Completed / Failed Tasks

Completed and failed operations

{% for task in tasks %} {% if task.status in ['completed', 'failed'] %}

{{ task.description }}

{% if task.status == 'completed' %} Completed {% elif task.status == 'failed' %} Failed {% endif %}

{{ task.command }}

{% if task.parameters %}

{{ task.parameters }}

{% endif %}

Completed: {{ task.completed_at|format_timestamp }}

{% endif %} {% else %}

No completed tasks

Completed tasks will appear here

{% endfor %}
{% endblock %}