I have a JSONField (http://djangosnippets.org/snippets/1478/) in a model and I'm trying to find out the best way to display the data to the admin user rather than json.
Does anyone know the best way to do this in django admin?
For instance, I would like
{u'field_user_name': u'foo bar', u'field_email': u'[email protected]'}
to display as
field_user_name = foo bar
field_email = [email protected]