{% extends "base.html" %} {% load utils %} {% block title %} {{ pipeline_name }} Runs {% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{{ pipeline_description }}
Job ID
Status
Execution Time
Start Time
End Time
|
|||||
---|---|---|---|---|---|
{{ run.run_id }}
{% include "includes/job_status.html" with status=run.status %}
{% if run.execution_time %}
{{ run.execution_time|humanize_duration }}
{% else %}
N/A
{% endif %}
{% if run.run_start_date %}
{{ run.run_start_date|date:"Y-m-d h:i a T" }}
{% else %}
N/A
{% endif %}
{% if run.run_end_date %}
{{ run.run_end_date|date:"Y-m-d h:i a T" }}
{% else %}
N/A
{% endif %}
|
|||||
No run found. |