Home - All the pastes - Authored by Thooms
Raw version
1 2 3 4 5 6
def is_member(self, user): a = Account.objects.get(user=user) if (self.membership_set.filter(account=a).count() > 0 ): return True else: return False