We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1307fc7 commit 60226b1Copy full SHA for 60226b1
1 file changed
src/apps/competitions/admin.py
@@ -25,6 +25,10 @@ def choices(self, changelist):
25
)
26
yield all_choice
27
28
+ def get_facet_counts(self, pk_attname, filtered_qs):
29
+ # Text-input filters have no predefined choices to count (Django 5.0+ facets).
30
+ return {}
31
+
32
33
class SubmissionsCountFilter(InputFilter):
34
# Human-readable title which will be displayed in the
0 commit comments