File 0001-Adds-deactivated-status-for-glance-image.patch of Package openstack-dashboard
From 2193c0da01d8d7c9a6b80e19983f040893c657ab Mon Sep 17 00:00:00 2001
From: sayalilunkad <sayali.92720@gmail.com>
Date: Wed, 7 Oct 2015 11:36:27 +0200
Subject: [PATCH] Adds deactivated status for glance image
This patch adds the status deactivated for
images that have been deactivated in glance
thus also fixes the issue with progress bar
after image is deactivated.
Change-Id: I24c9fecb3cf67e1a2a56a0443e272a34a3585a74
Closes-bug: #1482094
---
openstack_dashboard/dashboards/project/images/images/tables.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/openstack_dashboard/dashboards/project/images/images/tables.py b/openstack_dashboard/dashboards/project/images/images/tables.py
index 88dfae9..b4e51bf 100644
--- a/openstack_dashboard/dashboards/project/images/images/tables.py
+++ b/openstack_dashboard/dashboards/project/images/images/tables.py
@@ -222,6 +222,7 @@ class ImagesTable(tables.DataTable):
("pending_delete", None),
("killed", False),
("deleted", False),
+ ("deactivated", False),
)
name = tables.Column(get_image_name,
link=("horizon:project:images:images:detail"),
--
2.1.4