how to check queryset is empty or not django code example
Example 1: django empty queryset
Model.objects.none()
Example 2: checking if a queryset is empty django
orgs = Organisation.objects.filter(name__iexact = 'Fjuk inc')
if not orgs:# If any results
# Do this with the results without querying again.
else:# Else, do something else...
# Do that...