From c59531ca80e678a88a0ae746296c31f4eb43c903 Mon Sep 17 00:00:00 2001 From: Aaron Keys Date: Tue, 23 Jun 2015 10:59:04 -0700 Subject: [PATCH 1/2] add a simple index view to extend --- airflow/www/templates/index.html | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 airflow/www/templates/index.html diff --git a/airflow/www/templates/index.html b/airflow/www/templates/index.html new file mode 100644 index 0000000000000..3f63ec0269d35 --- /dev/null +++ b/airflow/www/templates/index.html @@ -0,0 +1,5 @@ +{% extends 'airflow/master.html' %} + +{% block body %} +{{ content }} +{% endblock %} From 123372e5ca1f381070cae49df0bfc2d802bf034f Mon Sep 17 00:00:00 2001 From: Aaron Keys Date: Tue, 23 Jun 2015 13:34:56 -0700 Subject: [PATCH 2/2] remove modal css override --- airflow/www/static/main.css | 3 --- airflow/www/templates/airflow/master.html | 2 +- airflow/www/templates/index.html | 6 +----- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/airflow/www/static/main.css b/airflow/www/static/main.css index e5ba0a288bf41..1174e2caed982 100644 --- a/airflow/www/static/main.css +++ b/airflow/www/static/main.css @@ -54,9 +54,6 @@ span.queued{ input#execution_date { margin-bottom: 0px; } -.modal{ - margin-top:5000px; -} table.highlighttable{ width: 100%; table-layout:fixed; diff --git a/airflow/www/templates/airflow/master.html b/airflow/www/templates/airflow/master.html index 6ba01e35505b2..09763b9a0ed1b 100644 --- a/airflow/www/templates/airflow/master.html +++ b/airflow/www/templates/airflow/master.html @@ -1 +1 @@ -{% extends "admin/master.html" %} +{% extends "index.html" %} diff --git a/airflow/www/templates/index.html b/airflow/www/templates/index.html index 3f63ec0269d35..e58860916a2a6 100644 --- a/airflow/www/templates/index.html +++ b/airflow/www/templates/index.html @@ -1,5 +1 @@ -{% extends 'airflow/master.html' %} - -{% block body %} -{{ content }} -{% endblock %} +{% extends 'admin/master.html' %}