6854N/AInternal patch to disable the image_source (Create Volume -> Volume
6854N/ASource -> image) because copy_volume_from_image is not supported yet.
3998N/AThis patch will not be committed upstream.
3998N/A
6854N/A--- horizon-9.0.1/openstack_dashboard/dashboards/project/volumes/volumes/forms.py.~1~ 2016-06-02 13:05:51.000000000 -0700
6854N/A+++ horizon-9.0.1/openstack_dashboard/dashboards/project/volumes/volumes/forms.py 2016-06-29 23:54:56.869785260 -0700
6854N/A@@ -230,6 +230,9 @@ class CreateForm(forms.SelfHandlingForm)
3998N/A
5403N/A images = utils.get_available_images(request,
5403N/A request.user.tenant_id)
5403N/A+ # Disable the image source on Solaris
5403N/A+ images = False
5403N/A+
5403N/A if images:
5403N/A source_type_choices.append(("image_source", _("Image")))
5403N/A choices = [('', _("Choose an image"))]