django check querydict empty code example
Example: 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...