From ddf66da8ad25ad2d6527b62932d2ad88398f4f56 Mon Sep 17 00:00:00 2001 From: chenqiaomin Date: Wed, 8 Jul 2015 13:41:28 -0400 Subject: [PATCH] Correct the wrong url in "Manage QoS Spec Association" The "_associate_qos_spec.html" url in "associate_qos_spec.html" is wrong, so there will cast TemplateDoesNotExist error. This patch Correct the wrong url. Change-Id: I757f75136018f85dec41ac4d813945748658ecec Closes-Bug: #1490366 --- .../templates/volumes/volume_types/associate_qos_spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_dashboard/dashboards/admin/volumes/templates/volumes/volume_types/associate_qos_spec.html b/openstack_dashboard/dashboards/admin/volumes/templates/volumes/volume_types/associate_qos_spec.html index d9484a7769..c032b062bb 100644 --- a/openstack_dashboard/dashboards/admin/volumes/templates/volumes/volume_types/associate_qos_spec.html +++ b/openstack_dashboard/dashboards/admin/volumes/templates/volumes/volume_types/associate_qos_spec.html @@ -3,5 +3,5 @@ {% block title %}{% trans "Associate QoS Spec" %}{% endblock %} {% block main %} - {% include 'admin/volumes/volume_types/qos_specs/_associate_qos_spec.html' %} + {% include 'admin/volumes/volume_types/_associate_qos_spec.html' %} {% endblock %}