Skip to content

Instantly share code, notes, and snippets.

View rgupta2's full-sized avatar
🎯
Coding

Rahul Gupta rgupta2

🎯
Coding
View GitHub Profile
@rgupta2
rgupta2 / admin.py
Last active October 3, 2020 00:35 — forked from Guest007/admin.py
JSON editor in admin for Django, jsoneditor, Postgres (from http://stackoverflow.com/a/40326235/2742038)
from django import forms
from django.contrib import admin
from django.utils.safestring import mark_safe
from django.template.loader import render_to_string
from .models import Consumer
class JSONEditorWidget(forms.Widget):