Merge "Fix stack status displaying"

This commit is contained in:
Jenkins 2013-08-14 14:49:13 +00:00 committed by Gerrit Code Review
commit b255470a4e
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"),