From e8a2e7ebb489ef5a12f82e2150bb9896604bc0a3 Mon Sep 17 00:00:00 2001 From: Paul Karikh Date: Fri, 4 Dec 2015 13:17:53 +0300 Subject: [PATCH] Fix decription for Image create modal Current image create modal description/helpbox contains inaccurate description. Glance can store compressed images, but Nova can't boot from compressed images. This patch deletes mentioning compressed images as supported type. Change-Id: Ie896cceae0b20f7d7cbe4af1e6bca67f2389c43f Closes-Bug: #1479966 --- .../project/images/templates/images/images/_create.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openstack_dashboard/dashboards/project/images/templates/images/images/_create.html b/openstack_dashboard/dashboards/project/images/templates/images/images/_create.html index b4b6e565fc..a85494d697 100644 --- a/openstack_dashboard/dashboards/project/images/templates/images/images/_create.html +++ b/openstack_dashboard/dashboards/project/images/templates/images/images/_create.html @@ -9,9 +9,9 @@

{% trans "Description:" %}

{% if HORIZON_IMAGES_ALLOW_UPLOAD %} - {% trans "Images can be provided via an HTTP/HTTPS URL or be uploaded from your local file system. Compressed image binaries are supported (.zip and .tar.gz.)" %} + {% trans "Images can be provided via an HTTP/HTTPS URL or be uploaded from your local file system." %} {% else %} - {% trans "Currently only images available via an HTTP/HTTPS URL are supported. The image location must be accessible to the Image Service. Compressed image binaries are supported (.zip and .tar.gz.)" %} + {% trans "Currently only images available via an HTTP/HTTPS URL are supported. The image location must be accessible to the Image Service." %} {% endif %}