You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defget_queryset(self):
# no need to call super().get_queryset() because# "By default, it returns the value of the queryset attribute"# https://docs.djangoproject.com/en/3.2/topics/class-based-views/generic-display/#dynamic-filteringslackid=self.request.GET.get("slackid")
learning_unit=self.request.GET.get("learning_unit")
exercise_notebook=self.request.GET.get("exercise_notebook")
# TODO this is inneficient, is there a better way?queryset=self.queryset.all()
ifslackid:
queryset=queryset.filter(slackid=slackid)
iflearning_unit:
queryset=queryset.filter(learning_unit=learning_unit)
ifexercise_notebook:
queryset=queryset.filter(exercise_notebook=exercise_notebook)
returnqueryset.order_by("-learning_unit", "-exercise_notebook", "-created")
´´´
goditsugly, butitsureworks
Gustavo-SF
changed the title
Students list view filter only filters by the first selected filter
instructor’s student list view filter only filters by the first selected filter
Aug 3, 2023
Gustavo-SF
changed the title
instructor’s student list view filter only filters by the first selected filter
Instructor’s student list view filter only filters by the first selected filter
Aug 3, 2023
when i filter for both
can_graduate
anduser_id
, i expect the results shown in the page to be filtered, however, only the first filter is appliedhttps://portal.lisbondatascience.org/academy/instructor/students/?can_graduate=False&user_id=111
The text was updated successfully, but these errors were encountered: