summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openstack_dashboard/dashboards/project/images/images/tables.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/openstack_dashboard/dashboards/project/images/images/tables.py b/openstack_dashboard/dashboards/project/images/images/tables.py
index fa77e01e5..6ec298d43 100644
--- a/openstack_dashboard/dashboards/project/images/images/tables.py
+++ b/openstack_dashboard/dashboards/project/images/images/tables.py
@@ -282,6 +282,7 @@ class ImagesTable(tables.DataTable):
("pending_delete", None),
("killed", False),
("deleted", False),
+ ("deactivated", False),
)
STATUS_DISPLAY_CHOICES = (
("active", pgettext_lazy("Current status of an Image", u"Active")),
@@ -291,6 +292,8 @@ class ImagesTable(tables.DataTable):
u"Pending Delete")),
("killed", pgettext_lazy("Current status of an Image", u"Killed")),
("deleted", pgettext_lazy("Current status of an Image", u"Deleted")),
+ ("deactivated", pgettext_lazy("Current status of an Image",
+ u"Deactivated")),
)
TYPE_CHOICES = (
("image", pgettext_lazy("Type of an image", u"Image")),