Improve Resource Group labels per discussion with Jason.

pull/3/head
Dave Page 2016-02-23 09:08:46 +00:00
parent c153032e3b
commit 2de7b4c0a0
1 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ define(
node: 'resource_group',
label: '{{ _('Resource Groups') }}',
type: 'coll-resource_group',
columns: ['name']
columns: ['name', 'cpu_rate_limit', 'dirty_rate_limit']
});
};
@ -72,10 +72,10 @@ define(
id: 'name', label: '{{ _('Group Name') }}', cell: 'string',
type: 'text',
},{
id: 'cpu_rate_limit', label:'{{ _('CPU Rate Limit') }}', cell: 'string',
id: 'cpu_rate_limit', label:'{{ _('CPU Rate Limit (%%)') }}', cell: 'string',
type: 'numeric', min:0, max:16777216
},{
id: 'dirty_rate_limit', label:'{{ _('Dirty Rate Limit') }}', cell: 'string',
id: 'dirty_rate_limit', label:'{{ _('Dirty Rate Limit (KB)') }}', cell: 'string',
type: 'numeric', min:0, max:16777216
}],