{% block extra_header %}{% endblock %}
{% if sidebar is defined and sidebar['sections'] %}
{% endif %}
daggerml
{% if breadcrumbs is defined and breadcrumbs %}
{% for breadcrumb in breadcrumbs %}
{{ breadcrumb.name }}
{% endfor %}
{% elif dropdowns is defined %}
{% for name, links in dropdowns.items() %} {% include 'nav-dropdown.html' %} {% endfor %}
{% endif %}
{% if sidebar is defined and sidebar['sections'] %}
{{ sidebar['title'] }}
{% for section in sidebar['sections'] %}
{% if section['type'] == 'repos' %}
{% elif section['type'] == 'branches' %}
{% elif section['type'] == 'dags' %}
{% else %}
{% endif %}
{{ section['title'] }}
{% for item in section['items'] %}
{% if item.display_name %} {{ item.display_name }} {% else %} {{ item.name }} {% endif %}
{% if item.get('type') == 'dag' and item.get('dag_id') %}
{{ item.dag_id[:6] }}
{% elif item.get('type') == 'node' and item.get('node_type') %}
{{ item.node_type }}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% block content %}{% endblock %}