I have a model with a field for a json object. This object is used on the site to control some css variables, among other things.
Right now in the admin, I have a t
Try using YAML as the format for user input, and then deserialize the object and serialize it back to json in the back end. Django already has serializers for that.