Merge "Properly sort Heat stacks on Created field"

This commit is contained in:
Zuul 2017-10-24 15:37:47 +00:00 committed by Gerrit Code Review
commit 14cf54696d
1 changed files with 2 additions and 1 deletions

View File

@ -277,7 +277,8 @@ class StacksTable(tables.DataTable):
created = tables.Column("creation_time",
verbose_name=_("Created"),
filters=(filters.parse_isotime,
filters.timesince_or_never))
filters.timesince_sortable),
attrs={'data-type': 'timesince'})
updated = tables.Column("updated_time",
verbose_name=_("Updated"),
filters=(filters.parse_isotime,