From 02d4a4f1303e4a37a2ca3ab7234bd8bd9c2e1e33 Mon Sep 17 00:00:00 2001 From: Brent Bovenzi Date: Thu, 10 Nov 2022 10:22:40 -0600 Subject: [PATCH] remove unused code.html (#27585) --- airflow/www/templates/airflow/code.html | 43 ------------------------- 1 file changed, 43 deletions(-) delete mode 100644 airflow/www/templates/airflow/code.html diff --git a/airflow/www/templates/airflow/code.html b/airflow/www/templates/airflow/code.html deleted file mode 100644 index b1eaa93bb9f7f..0000000000000 --- a/airflow/www/templates/airflow/code.html +++ /dev/null @@ -1,43 +0,0 @@ -{# - 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 base_template %} - -{% block page_title %}{{ dag.dag_id }} - Code - {{ appbuilder.app_name }}{% endblock %} - -{% block content %} - {{ super() }} -

{{ title }}

- - {% if pre_subtitle %} -
{{ pre_subtitle }}
- {% endif %} - - {% if subtitle %} -
{{ subtitle }}
- {% endif %} - - {% if code %} -
{{ code }}
- {% endif %} - - {% if code_html %} - {{ code_html }} - {% endif %} -{% endblock %}