susioma/api/views.py

9 lines
275 B
Python
Raw Normal View History

2021-10-23 18:51:03 +00:00
from django.views.generic import View
from django.http import JsonResponse
from buyer.models import Card
class AvailabilityView(View):
def get(self, request):
cards = len(Card.objects.filter(delivered__isnull=True))
return JsonResponse({"cards": cards})