django-admin-json-editor icon indicating copy to clipboard operation
django-admin-json-editor copied to clipboard

Adds json-editor for JSONField in Django Administration

Results 22 django-admin-json-editor issues
Sort by recently updated
recently updated
newest added

I needed **django admin inlines support**, and I realized that it could be achieved **only by moving django_admin_json_editor javascript code outside the template** (`editor.html`) to a separate js file. When...

enhancement

This lib looks great when you look at the options in the source code. But it really lacks intuitive use case examples. For instance: - Different types (even a link...

``` import jsonschema def clean(self): try: jsonschema.validate(data, SETTINGS_SCHEMA) except jsonschema.exceptions.ValidationError as e: raise forms.ValidationError(str(e)) ```

You need to press on Properties again to close the modal

bug

Is there a way to set and render new data_schema on the page? The problem is to set json schema value on another field change event.

It seems that the JSON is not updated when pression enter from the field

Hello! Thanks for the work in this repository, it works great! I had a problem and I did not know how to fix it: I tried to place the form...

enhancement