Merge "Remove data-type and sort from flavor column" into stable/kilo

This commit is contained in:
Jenkins 2016-01-14 11:07:53 +00:00 committed by Gerrit Code Review
commit e3848cf0aa
1 changed files with 1 additions and 3 deletions

View File

@ -1014,9 +1014,7 @@ class InstancesTable(tables.DataTable):
ip = tables.Column(get_ips,
verbose_name=_("IP Address"),
attrs={'data-type': "ip"})
size = tables.Column(get_size,
verbose_name=_("Size"),
attrs={'data-type': 'size'})
size = tables.Column(get_size, sortable=False, verbose_name=_("Size"))
keypair = tables.Column(get_keyname, verbose_name=_("Key Pair"))
status = tables.Column("status",
filters=(title, filters.replace_underscores),