From 94249ed20c0dc5ca145e4c3ac04705e3bc900b57 Mon Sep 17 00:00:00 2001 From: Nicole Dominguez Date: Wed, 9 May 2018 23:42:17 -0400 Subject: [PATCH] superset/import_dashboards.html: Update title, clean up html (#4972) * Changes "Import the dashboards." to "Import dashboards" * Cleans up the HTML to add quotes, self close tags, etc. * Adds a class to the `` button to utilize bootstrap style * Remove the `` tag in body as it's not vaild HTML and redundant with `{% block %}` --- .../templates/superset/import_dashboards.html | 36 ++++++++++--------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/superset/templates/superset/import_dashboards.html b/superset/templates/superset/import_dashboards.html index 383506f98..14c7bd1c8 100644 --- a/superset/templates/superset/import_dashboards.html +++ b/superset/templates/superset/import_dashboards.html @@ -8,22 +8,24 @@ {% endwith %} {% endblock %} -{% block title %}{{ _("Import") }}{% endblock %} +{% block title %}{{ _("Import dashboards") }}{% endblock %} + {% block body %} - {% include "superset/flash_wrapper.html" %} - <div class="container"> - <title>Import the dashboards. -

Import the dashboards.

-
- -

- -

-
- + {% include "superset/flash_wrapper.html" %} + +
+

Import dashboards

+ +
+ +

+ + +

+
+
{% endblock %}