Limit submission page to 50000

This commit is contained in:
cuom1999 2022-10-28 22:34:12 -05:00
parent 45b844d6c9
commit d0547ec106
2 changed files with 18 additions and 12 deletions

View file

@ -449,10 +449,10 @@ class OrganizationSubmissions(
def contest(self):
return None
def get_queryset(self):
def _get_queryset(self):
return (
super()
._get_queryset()
._get_entire_queryset()
.filter(contest_object__organizations=self.organization)
)