Orchestrator Status: {% if stats.orchestrator_available %} Available and Ready All dependencies loaded successfully {% else %} Unavailable Missing dependencies - check orchestrator_health_system.py {% endif %}

{{ stats.total_runs }}

Total Runs

{{ stats.successful_runs }}

Successful

{{ stats.failed_runs }}

Failed

{{ "%.1f"|format(stats.success_rate) }}%

Success Rate

Pipeline Actions
Run with default settings
Configure advanced options
{% if active_runs %}
Active Pipelines
{{ active_runs|length }} Running
{% for pipeline in active_runs %}
{{ pipeline.name }}
{{ pipeline.pipeline_id }}
{{ pipeline.status }}
Current Stage: {{ pipeline.stage }}
{{ pipeline.progress_percentage }}% Complete {{ pipeline.started_by.first_name if pipeline.started_by else 'Unknown' }}
{% endfor %}
{% endif %}
Recent Pipeline Runs
Manage Templates
{% if recent_runs %}
{% for pipeline in recent_runs %} {% endfor %}
Pipeline Name Status Started Duration Progress Actions
{{ pipeline.name }}
{{ pipeline.pipeline_id }}
{% if pipeline.status == 'completed' %} Completed {% elif pipeline.status == 'failed' %} Failed {% elif pipeline.status == 'running' %} Running {% elif pipeline.status == 'cancelled' %} Cancelled {% else %} {{ pipeline.status|title }} {% endif %} {{ pipeline.started_at.strftime('%Y-%m-%d %H:%M') if pipeline.started_at else 'N/A' }} {% if pipeline.duration_seconds %} {{ (pipeline.duration_seconds // 60) }}m {{ (pipeline.duration_seconds % 60) }}s {% else %} - {% endif %}
{{ pipeline.progress_percentage }}%
{% if pipeline.status in ['running', 'queued'] %} {% endif %}
{% else %}
No pipeline runs yet

Start your first pipeline to see results here

{% endif %}