Skip to content
Snippets Groups Projects
Commit 3d581aa7 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Remove the active prefilter

parent 2bab88dd
No related branches found
No related tags found
No related merge requests found
...@@ -91,9 +91,9 @@ class SubmissionOverviewView(AllActivityContextMixin, BaseAdminSubmissionsTable) ...@@ -91,9 +91,9 @@ class SubmissionOverviewView(AllActivityContextMixin, BaseAdminSubmissionsTable)
def get_context_data(self, **kwargs): def get_context_data(self, **kwargs):
base_query = RoundsAndLabs.objects.with_progress().order_by('end_date') base_query = RoundsAndLabs.objects.with_progress().order_by('end_date')
open_rounds = base_query.open()[:6] open_rounds = base_query.open()[:6]
open_query = '?round_state=open&active=active' open_query = '?round_state=open'
closed_rounds = base_query.closed()[:6] closed_rounds = base_query.closed()[:6]
closed_query = '?round_state=closed&active=active' closed_query = '?round_state=closed'
return super().get_context_data( return super().get_context_data(
open_rounds=open_rounds, open_rounds=open_rounds,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment