From a33cb56556562684fbf76bb0cad442c73169ebd4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Christian=20B=C3=B6ttcher?= <c.boettcher@fz-juelich.de>
Date: Wed, 26 Apr 2023 10:46:15 +0200
Subject: [PATCH] remove duplicate block

---
 templates/main.html | 22 +---------------------
 1 file changed, 1 insertion(+), 21 deletions(-)

diff --git a/templates/main.html b/templates/main.html
index 45e52a8..2e9379e 100644
--- a/templates/main.html
+++ b/templates/main.html
@@ -34,27 +34,7 @@
      <meta name="is_scheduler_running" content="True">
    {% endif %}
  {% endblock %}
- 
- {% block head_css %}
-   {{ super() }}
- 
-   {% if not appbuilder.app_theme %}
-     {# airflowDefaultTheme.css file contains the styles from local bootstrap-theme.css #}
-     <link rel="stylesheet" type="text/css" href="{{ url_for_asset('airflowDefaultTheme.css') }}">
-   {% endif %}
-   <link rel="stylesheet" type="text/css" href="{{ url_for_asset('materialIcons.css') }}">
-   <link rel="stylesheet" type="text/css" href="{{ url_for_asset('main.css') }}">
-   <link rel="stylesheet" type="text/css" href="{{ url_for_asset('loadingDots.css') }}">
-   <link rel="stylesheet" type="text/css" href="{{ url_for_asset('bootstrap-datetimepicker.min.css') }}">
-   <style type="text/css">
-     {% for state, state_color in state_color_mapping.items() %}
-       span.{{state}} {
-         background-color: {{state_color}};
-       }
-     {% endfor %}
-   </style>
-   <link rel="icon" type="image/png" href="{{ url_for('static', filename='pin_32.png') }}">
- {% endblock %}
+
  
  {% block messages %}
    {% include 'appbuilder/flash.html' %}
-- 
GitLab