Pipeline ID: {{ pipeline.pipeline_id }}
Status: {% 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 %}
Current Stage: {{ pipeline.stage }}
Started By: {% if pipeline.started_by %} {{ pipeline.started_by.first_name }} {{ pipeline.started_by.last_name }} {% else %} Unknown {% endif %}
Started: {{ pipeline.started_at.strftime('%Y-%m-%d %H:%M:%S') if pipeline.started_at else 'N/A' }}
Completed: {{ pipeline.completed_at.strftime('%Y-%m-%d %H:%M:%S') if pipeline.completed_at else 'N/A' }}
Duration: {% if pipeline.duration_seconds %} {{ (pipeline.duration_seconds // 60) }}m {{ (pipeline.duration_seconds % 60) }}s {% else %} N/A {% endif %}
{{ pipeline.error_message }}
{{ step.step_data | tojson(indent=2) }}
Pipeline steps will appear here once they are created
{{ pipeline.config | tojson(indent=2) }}