﻿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
28388	JSONField cannot be overridden to use OrderedDict as python-representation of objects of JSON	Vladimir Chub		"I tried to override `django.contrib.postgres.fields.JSONField` to use `OrderedDict` instead of `dict` when field value is representing as Python-object. According to the source code, it was necessary override `django.contrib.postgres.fields.jsonb.JSONField` and its formfield form `django.contrib.postgres.forms.jsonb.JSONField`. I changed `json.loads(value)` to `json.loads(value, object_pairs_hook=OrderedDict)` in multiple places but it has no effect. Having dealt with the source code, I came to the conclusion that there is no possibility (or too complexity, so I don't know how) to override this behavior of JSONField. 
Please, implement the feature which will allow override JSONField's python-representation"	New feature	closed	contrib.postgres	1.11	Normal	wontfix			Unreviewed	0	0	0	0	0	0
