{# 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 'admin/master.html' %} {% import 'admin/lib.html' as lib with context %} {% import 'admin/static.html' as admin_static with context%} {% import 'admin/model/layout.html' as model_layout with context %} {% import 'admin/actions.html' as actionlib with context %} {% block head %} {{ super() }} {{ lib.form_css() }} {% endblock %} {% block body %}

DAGs

{% block model_menu_bar %} {% endblock %} {% if filters %} {{ model_layout.filter_form() }}
{% endif %} {% block model_list_table %} {% block list_header scoped %} {% if actions %} {% endif %} {% block list_row_actions_header %} {% endblock %} {% set column = 0 %} {% for c, name in list_columns %} {% set column = column + 1 %} {% endfor %} {% endblock %} {% for row in data %} {% block list_row scoped %} {% if actions %} {% endif %} {% block list_row_actions_column scoped %} {% endblock %} {% for c, name in list_columns %} {% endfor %} {% endblock %} {% else %} {% endfor %}
  {% if admin_view.is_sortable(c) %} {% if sort_column == column %} {{ name }} {% if sort_desc %} {% else %} {% endif %} {% else %} {{ name }} {% endif %} {% else %} {{ name }} {% endif %} {% if admin_view.column_descriptions.get(c) %} {% endif %} Statuses Links
{% block list_row_actions scoped %} {%- if admin_view.can_edit -%} {%- endif -%} {%- if admin_view.can_delete -%}
{% if csrf_token %} {% endif %}
{%- endif -%} {% endblock %}
{{ get_value(row, c) }}
{% block empty_list_message %}
{{ admin_view.get_empty_list_message() }}
{% endblock %}
{{ lib.pager(page, num_pages, pager_url) }} {% endblock %} {{ actionlib.form(actions, get_url('.action_view')) }} {% endblock %} {% block tail %} {{ super() }} {{ lib.form_js() }} {{ actionlib.script(_gettext('Please select at least one record.'), actions, actions_confirmation) }} {% endblock %}