API for getting signups for list view
This commit is contained in:
+1
-1
@@ -115,7 +115,7 @@ class SignupForm(models.Model):
|
||||
|
||||
@property
|
||||
def signups(self):
|
||||
return Signup.objects.filter(signupForm=self).order_by('pk')
|
||||
return Signup.objects.filter(signupForm=self, deleted=False).order_by('pk')
|
||||
|
||||
@property
|
||||
def isOpen(self):
|
||||
|
||||
Reference in New Issue
Block a user