{# Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #} {% extends "airflow/dag.html" %} {% block page_title %}{{ dag.dag_id }} - {{ title }} - Airflow{% endblock %} {% block content %} {{ super() }}

{{ title }}

{% for state, count in states %} {{ state }} {{ count }} {% endfor %}

{% if dag.parent_dag is defined and dag.parent_dag %} {% endif %}
Parent DAG {{ dag.parent_dag.dag_id }}
Schedule Interval {{ dag.schedule_interval }}
Start Date {{ dag.start_date }}
End Date {{ dag.end_date }}
Max Active Runs {{ active_runs | length }} / {{ dag.max_active_runs }}
Concurrency {{ dag.concurrency }}
Default Args {{ dag.default_args }}
Tasks Count {{ dag.tasks|length }}
Task IDs {{ dag.task_ids }}
Filepath {{ dag.filepath }}
Owner {{ dag.owner }}
Tags {% if tags is defined and tags %} {% for tag in tags | sort(attribute='name') %} {{ tag.name }} {% endfor %} {% else %} None {% endif %}
{% endblock %}