diff --git a/superset/templates/superset/import_dashboards.html b/superset/templates/superset/import_dashboards.html index 14c7bd1c85..53f01d32b4 100644 --- a/superset/templates/superset/import_dashboards.html +++ b/superset/templates/superset/import_dashboards.html @@ -1,16 +1,8 @@ -{% extends "superset/basic.html" %} - -# TODO: move the libs required by flask into the common.js from welcome.js. -{% block head_js %} - {{ super() }} - {% with filename="welcome" %} - {% include "superset/partials/_script_tag.html" %} - {% endwith %} -{% endblock %} +{% extends "appbuilder/base.html" %} {% block title %}{{ _("Import dashboards") }}{% endblock %} -{% block body %} +{% block content %} {% include "superset/flash_wrapper.html" %}
@@ -23,8 +15,19 @@ id="csrf_token" value="{{ csrf_token() if csrf_token else '' }}" />

- - + + +
+
+

diff --git a/superset/templates/superset/no_data.html b/superset/templates/superset/no_data.html deleted file mode 100644 index 9c1cddebd9..0000000000 --- a/superset/templates/superset/no_data.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "superset/datasource.html" %} - -{% block viz %} -No data: review your incantations. -{% endblock %}