{% extends "airflow/dag.html" %} {% block title %}Airflow - DAGs{% endblock %} {% block body %} {{ super() }}

{{ title }}

{% if html_code %} {{ html_code|safe }} {% endif %} {% if code %}
{{ code }}
{% endif %} {% if code_dict %} {% for k, v in code_dict.items() %}
{{ k }}
{{ v }}
{% endfor %} {% endif %} {% if html_dict %} {% for k, v in html_dict.items() %}
{{ k }}
{{ v|safe }} {% endfor %} {% endif %} {% endblock %} {% block tail %} {{ super() }} {% endblock %}