A widget that renders JSON data as separate editable inputs.
You can see full examples on the page [GitHub](https://github.com/abbasovalex/django-SplitJSONWidget-form)
- django
- forms
- json
- json-field
- jsonfield
- django-forms
You can see full examples on the page [GitHub](https://github.com/abbasovalex/django-SplitJSONWidget-form)
This is a custom field that lets you easily store JSON data in one of your model fields. This is updated to work with Django 1.1. **Example: (models.py)** from django.db import models import JSONField class MyModel(models.Model): info = JSONField() ** Example: (shell)** >>> obj = MyModel.objects.all()[0] >>> type(obj.info) <type 'NoneType'> >>> obj.info = {"test": [1, 2, 3]} >>> obj.save() **[Code at GitHub](http://github.com/bradjasper/django-jsonfield/tree/master)**
2 snippets posted so far.