Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Instructor’s student list view filter only filters by the first selected filter #196

Open
buedaswag opened this issue Dec 5, 2021 · 1 comment
Labels

Comments

@buedaswag
Copy link
Contributor

when i filter for both can_graduate and user_id, i expect the results shown in the page to be filtered, however, only the first filter is applied

https://portal.lisbondatascience.org/academy/instructor/students/?can_graduate=False&user_id=111

image

@buedaswag
Copy link
Contributor Author

in the prep course portal i fixed it like this

def get_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-filtering
        slackid = 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()
        if slackid:
            queryset = queryset.filter(slackid=slackid)
        if learning_unit:
            queryset = queryset.filter(learning_unit=learning_unit)
        if exercise_notebook:
            queryset = queryset.filter(exercise_notebook=exercise_notebook)

        return queryset.order_by("-learning_unit", "-exercise_notebook", "-created")
´´´

god its ugly, but it sure works

@Gustavo-SF Gustavo-SF changed the title "Students" filter not working as expected Students list view filter only filters by the first selected filter Aug 3, 2023
@Gustavo-SF 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 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants