From f713bfb82b13a56e628cfdff05e9f01256d7213a Mon Sep 17 00:00:00 2001 From: "wei.ying" Date: Wed, 12 Apr 2017 21:07:47 +0800 Subject: [PATCH] Add missing include template in admin migrate host form If migrate host action missing "ajax-modal", it will can not find "_migrate_host.html" Change-Id: Ide8db6dd4b1a46565eefdaf3d08470f450ee3a83 Closes-bug: #1682114 --- .../templates/hypervisors/compute/migrate_host.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openstack_dashboard/dashboards/admin/hypervisors/templates/hypervisors/compute/migrate_host.html b/openstack_dashboard/dashboards/admin/hypervisors/templates/hypervisors/compute/migrate_host.html index db84525155..e41f7a14ea 100644 --- a/openstack_dashboard/dashboards/admin/hypervisors/templates/hypervisors/compute/migrate_host.html +++ b/openstack_dashboard/dashboards/admin/hypervisors/templates/hypervisors/compute/migrate_host.html @@ -2,4 +2,6 @@ {% load i18n %} {% block title %}{% trans "Migrate Host" %}{% endblock %} -{% block main %}{% endblock %} +{% block main %} + {% include 'admin/hypervisors/compute/_migrate_host.html' %} +{% endblock %}