﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10734	Admin actions: use SortedDict instead of dict for predictable actions order	Mikhail Korobov	nobody	"I think the ability to define order of actions is a nice usability feature. The order of admin actions in drop-down menu now depends on internal python dict representation. If in `get_actions` function we use[[BR]]

`actions = SortedDict()` 

instead of 

`actions = {}`

actions wil have fixed order: the ones defined first will come on the top of the list. For example, if we define some custom actions using 

`actions=['action1', 'action2']` 

action1 will be before action2 in drop-down. For reverse order we will be able to write 

`actions=['action2', 'action1']`.  "		closed	contrib.admin	dev		fixed		kmike84@…	Accepted	0	0	0	0	0	0
