Fix stack status displaying

Add status choices for stacks table.
"Update" status displays correctly now: white field
instead of yellow field and progress bar.

Fixes bug 1207214

Change-Id: I36ca9a41d12a08392e021dcd4ec68642aa07ab12
This commit is contained in:
Tatiana Mazur 2013-08-09 12:27:53 +04:00
parent af6a61f4eb
commit 0665b51272
1 changed files with 2 additions and 0 deletions

View File

@ -68,7 +68,9 @@ class StacksUpdateRow(tables.Row):
class StacksTable(tables.DataTable):
STATUS_CHOICES = (
("Create Complete", True),
("Update Complete", True),
("Create Failed", False),
("Update Failed", False),
)
name = tables.Column("stack_name",
verbose_name=_("Stack Name"),