Do not show progress bar for shelved instance

Add shelved:True to instance status mapping to disable progress
bar when a instance is shelved.

Change-Id: Iad5cdce74bce829b11a902f13a774a008c3c425c
Closes-bug: #1406441
This commit is contained in:
liyingjun
2014-12-31 14:04:26 +08:00
parent 519577893a
commit 2f68530a3c
2 changed files with 2 additions and 0 deletions

View File

@@ -112,6 +112,7 @@ class AdminInstancesTable(tables.DataTable):
("paused", True),
("error", False),
("rescue", True),
("shelved", True),
("shelved_offloaded", True),
)
tenant = tables.Column("tenant_name", verbose_name=_("Project"))