{% extends "base.html" %} {% block title %} Pipeline Dashboard {% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{{ active_pipeline_count|default:0 }} active pipeline{{ active_pipeline_count|default:0|pluralize }}, {{ disabled_pipeline_count|default:0 }} disabled pipeline{{ disabled_pipeline_count|default:0|pluralize }}
|
Pipeline ID
Active
Interval
Status
Last Run End Time
Next Run Start
|
|||||
|---|---|---|---|---|---|
|
{{ schedule.pipeline_id }}
{{ schedule.is_active|yesno:"Yes,No" }}
{% if schedule.is_run_once %}
Once
{% else %}
{{ schedule.run_interval }} hour{{ schedule.run_interval|pluralize }}
{% endif %}
{% include "includes/job_status.html" with status=schedule.status %}
{% if schedule.latest_run_end_date %}
{{ schedule.latest_run_end_date|date:"Y-m-d h:i a T" }}
{% else %}
N/A
{% endif %}
{% if schedule.next_run_date %}
{{ schedule.next_run_date|date:"Y-m-d" }}
{% else %}
N/A
{% endif %}
|
|||||
| No pipeline found. |