diff --git a/www/conservancy/apps/fundgoal/views.py b/www/conservancy/apps/fundgoal/views.py index 17c40cf3e02f72c7b3ee6789bec980569862ef57..bf51aa600da25956e2249054cd56228e6946ee52 100644 --- a/www/conservancy/apps/fundgoal/views.py +++ b/www/conservancy/apps/fundgoal/views.py @@ -1,2 +1,19 @@ from conservancy.apps.fundgoal.models import FundraisingGoal from django.shortcuts import get_object_or_404, render_to_response +from django.http import JsonResponse + + +def view(request): + """JSON version of request + """ + keysForJSON = [ 'fundraiser_goal_amount', 'fundraiser_so_far_amount', 'fundraiser_donation_count', + 'fundraiser_donation_count_disclose_threshold' ] + GET = obj.GET + codeNames = [] + if 'code_name' in GET: codeNames += GET.getlist('code_name') + + returnDict = {} + for code in FundraisingGoal.objects.filter(fundraiser_code_name__in=codeNames): + for kk in keysForJSON: + returnDict[code][kk] = getattr(code, kk) + return JsonResponse( returnDict)