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 11dff26cec

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"),