mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 09:49:32 +02:00
bitbake: toaster: All machines Add layer name order by functions
Allow the layer name to be sorted alphabetically in the machines table. Also fix the default ordering to be machine name (Bitbake rev: 8fffd7b5fd53bd66ed7621595f57e2cae416e80d) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
02b7704052
commit
50719afbc2
@@ -2777,7 +2777,7 @@ if toastermain.settings.MANAGED:
|
||||
# define here what parameters the view needs in the GET portion in order to
|
||||
# be able to display something. 'count' and 'page' are mandatory for all views
|
||||
# that use paginators.
|
||||
(pagesize, orderby) = _get_parameters_values(request, 10, 'updated:+')
|
||||
(pagesize, orderby) = _get_parameters_values(request, 10, 'name:+')
|
||||
mandatory_parameters = { 'count': pagesize, 'page' : 1, 'orderby' : orderby };
|
||||
retval = _verify_parameters( request.GET, mandatory_parameters )
|
||||
if retval:
|
||||
@@ -2815,6 +2815,8 @@ if toastermain.settings.MANAGED:
|
||||
},
|
||||
{ 'name': 'Layer',
|
||||
'clclass': 'layer',
|
||||
'orderfield': _get_toggle_order(request, "layer_version__layer__name"),
|
||||
'ordericon' : _get_toggle_order_icon(request, "layer_version__layer__name"),
|
||||
},
|
||||
{ 'name': 'Layer source',
|
||||
'clclass': 'source',
|
||||
|
||||
Reference in New Issue
Block a user