django-jsonschema-form icon indicating copy to clipboard operation
django-jsonschema-form copied to clipboard

Django widgets to render jsonschema as admin forms

Results 1 django-jsonschema-form issues
Sort by recently updated
recently updated
newest added

Implementing the example with a **JSONField** : ``` class Category(models.Model): field = JSONField(default=dict) class Meta: ordering = ("-pk",) def __str__(self): return self.id ``` and the corresponding implementation : ``` schema...