{"id":15012959,"url":"https://github.com/bhch/django-jsonform","last_synced_at":"2025-04-12T23:28:04.340Z","repository":{"id":38203815,"uuid":"400714962","full_name":"bhch/django-jsonform","owner":"bhch","description":"A better, user-friendly JSON editing form field for Django admin. Also supports Postgres ArrayField.","archived":false,"fork":false,"pushed_at":"2025-01-29T22:30:21.000Z","size":1450,"stargazers_count":383,"open_issues_count":37,"forks_count":37,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-05T22:02:35.480Z","etag":null,"topics":["admin","django","json-form","json-schema","python"],"latest_commit_sha":null,"homepage":"https://django-jsonform.rtfd.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bhch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"bhch"}},"created_at":"2021-08-28T05:58:50.000Z","updated_at":"2025-03-28T13:10:13.000Z","dependencies_parsed_at":"2024-01-15T14:23:15.128Z","dependency_job_id":"601148cf-57b7-43d5-94e8-744666507a18","html_url":"https://github.com/bhch/django-jsonform","commit_stats":{"total_commits":304,"total_committers":16,"mean_commits":19.0,"dds":"0.052631578947368474","last_synced_commit":"d815696b380d5ffd35a735645cdac8adff1af450"},"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhch%2Fdjango-jsonform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhch%2Fdjango-jsonform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhch%2Fdjango-jsonform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhch%2Fdjango-jsonform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bhch","download_url":"https://codeload.github.com/bhch/django-jsonform/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248646454,"owners_count":21139008,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["admin","django","json-form","json-schema","python"],"created_at":"2024-09-24T19:43:31.029Z","updated_at":"2025-04-12T23:28:04.317Z","avatar_url":"https://github.com/bhch.png","language":"Python","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/bhch/django-jsonform/master/docs/_static/logo.png\" width=\"200\" alt=\"django-jsonform icon\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    A user-friendly JSON editing form for django admin.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Python-%3E%3D%203.4-blue\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Django-%3E%3D%202.0-blue\"\u003e\n  \u003cimg src=\"https://img.shields.io/pypi/dm/django-jsonform\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cstrong\u003e\u003ca href=\"https://django-jsonform.rtfd.io\"\u003eDocumentation\u003c/a\u003e\u003c/strong\u003e \u0026bull;\n  \u003cstrong\u003e\u003ca href=\"https://bhch.github.io/react-json-form/playground/\"\u003ePlayground\u003c/a\u003e\u003c/strong\u003e \u0026bull;\n  \u003cstrong\u003e\u003ca href=\"https://pypi.org/project/django-jsonform/\"\u003ePyPI\u003c/a\u003e\u003c/strong\u003e\n\u003c/p\u003e\n\n## Features\n\n - [x] File uploads\n - [x] Postgres `ArrayField`\n - [x] Many inputs and field types\n - [x] UI matches with Django admin's\n - [x] Recursion (nesting with self references)\n - [x] Validation\n\n## Screenshots\n\nHere's a screenshot of items being added to a shopping list (JSON array) dynamically:\n\n![django-jsonform screenshot](https://raw.githubusercontent.com/bhch/django-jsonform/master/docs/_static/quickstart.gif)\n\n## Install\n\nInstall via pip:\n\n```sh\n$ pip install django-jsonform\n```\n\nEdit your *settings.py* file:\n\n```python\n# settings.py\n\nINSTALLED_APPS = [\n    # ...\n    'django_jsonform'\n]\n```\n\n## Upgrading notes\n\nWhen upgrading from an older version of this library, please ensure that your\nbrowser is loading the latest static JavaScript files that come with this library.\n\n - In the development environment, clear the browser cache.\n - In the production environment, you must run the `collectstatic` command to update\n the static files.\n\n## Documentation\n\nQuickstart and usage docs can be found at [http://django-jsonform.rtfd.io](http://django-jsonform.rtfd.io).\n\n## Contributing\n\n - The JavaScript code is written in React and it lives in another repo: https://github.com/bhch/react-json-form.  \n   The JS code lacks proper documentation or comments, so before contributing, maybe open an issue and I can help you out.\n - For everything else (related to Django or widget's css), contribute directly to this repo.\n\n## License\n\n[BSD-3-Clause](LICENSE.txt)\n","funding_links":["https://github.com/sponsors/bhch"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhch%2Fdjango-jsonform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbhch%2Fdjango-jsonform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhch%2Fdjango-jsonform/lists"}