Commit 7c16e4b9 by Kálmán Viktor

dashboard: remove cpu priority from template list table

parent d624a860
......@@ -158,10 +158,6 @@ class TemplateListTable(Table):
ram_size = TemplateColumn(
"{{ record.ram_size }} Mb",
)
priority = TemplateColumn(
"{{ record.priority }}/100 ",
verbose_name=_("CPU priority"),
)
lease = TemplateColumn(
"{{ record.lease.name }}",
verbose_name=_("Lease"),
......@@ -176,7 +172,7 @@ class TemplateListTable(Table):
attrs = {'class': ('table table-bordered table-striped table-hover'
' template-list-table')}
fields = ('name', 'num_cores', 'ram_size', 'arch',
'priority', 'system', 'access_method', 'lease', 'state',
'system', 'access_method', 'lease', 'state',
'actions', )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment