# views.py from .models import JSONData def retrieve_json_data(): data = JSONData.objects.first() if data: return data.json_content else: return None