{% extends "base.html" %} {% block title %}q-ai — Operations{% endblock %} {% block content %}
{% if workflow_run %} {% set status_name = workflow_run.status.name %} {% if status_name == 'COMPLETED' %} {{ status_name }} {% elif status_name == 'FAILED' %} {{ status_name }} {% elif status_name == 'RUNNING' %} {{ status_name }} {% elif status_name == 'PARTIAL' %} {{ status_name }} {% elif status_name == 'WAITING_FOR_USER' %} {{ status_name }} {% else %} {{ status_name }} {% endif %} {{ workflow_run.name or 'Workflow' }} {% else %} IDLE No active workflow {% endif %}
{% if workflow_run %} Refresh {% endif %} Elapsed: --:--
{% if child_runs %} {% for child in child_runs %} {{ child.module }}: {{ child.status.name.lower() }} {% endfor %} {% endif %}
{% include "partials/audit_tab.html" %}

Findings

{% include "partials/findings_sidebar.html" %}
{% endblock %}