What is the recommended idiom for checking whether a query returned any results? Example:
orgs = Organisation.objects.filter(name__iexact = \'Fjuk inc\')
if not orgs: # Do this... else: # Do that...