diff --git a/opentech/apply/dashboard/tables.py b/opentech/apply/dashboard/tables.py index bae28936e5ec240e1f01b9b977ce4c45f27bbfa3..52b19b700d966de9faf115157a5f03b814b64108 100644 --- a/opentech/apply/dashboard/tables.py +++ b/opentech/apply/dashboard/tables.py @@ -48,10 +48,10 @@ class Select2ModelMultipleChoiceFilter(Select2MultipleChoiceFilter, filters.Mode class SubmissionFilter(filters.FilterSet): - round = Select2ModelMultipleChoiceFilter(queryset=get_used_rounds, label="Rounds") - page = Select2ModelMultipleChoiceFilter(queryset=get_used_funds, label='Funds') + round = Select2ModelMultipleChoiceFilter(queryset=get_used_rounds, label='Rounds') + funds = Select2ModelMultipleChoiceFilter(name='page', queryset=get_used_funds, label='Funds') status = Select2MultipleChoiceFilter(name='status__contains', choices=status_options, label='Status') class Meta: model = ApplicationSubmission - fields = ('page', 'round', 'status') + fields = ('funds', 'round', 'status')