diff --git a/openstack_dashboard/dashboards/admin/instances/tables.py b/openstack_dashboard/dashboards/admin/instances/tables.py index 964fc7f443..d6b394acb2 100644 --- a/openstack_dashboard/dashboards/admin/instances/tables.py +++ b/openstack_dashboard/dashboards/admin/instances/tables.py @@ -116,6 +116,8 @@ class AdminInstancesTable(tables.DataTable): ("suspended", True), ("paused", True), ("error", False), + ("rescue", True), + ("shelved offloaded", True), ) tenant = tables.Column("tenant_name", verbose_name=_("Project")) # NOTE(gabriel): Commenting out the user column because all we have diff --git a/openstack_dashboard/dashboards/project/instances/tables.py b/openstack_dashboard/dashboards/project/instances/tables.py index 8209c44cbd..bcbfaf2a25 100644 --- a/openstack_dashboard/dashboards/project/instances/tables.py +++ b/openstack_dashboard/dashboards/project/instances/tables.py @@ -783,6 +783,8 @@ class InstancesTable(tables.DataTable): ("suspended", True), ("paused", True), ("error", False), + ("rescue", True), + ("shelved offloaded", True), ) name = tables.Column("name", link=("horizon:project:instances:detail"),