﻿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
27675	Django postgres JSONField encoding	Hisham Waleed Karam	nobody	"i have JSONField in a model this field store json in 'utf8' but when i am trying to get the value of this field it escaped

model field:

{{{

details = JSONField(blank=True, default={})
}}}

database row:
[[Image(http://i.imgur.com/GVKprEK.png)]]

code :


{{{
from stores.models import Item
i=Item.objects.all()[0]
i.details
}}}

output in console and django admin: i want django to show details without escaping

{u'\u0633\u064a\u0628': u'\u0634\u0633\u064a'}"	Bug	closed	contrib.postgres	1.10	Normal	needsinfo	models JSONField		Unreviewed	0	0	0	0	0	0
