From eff2b5542bf94624c5f7504f2df1bec4b1403f20 Mon Sep 17 00:00:00 2001 From: George Katsikas <giorgakis.katsikas@gmail.com> Date: Thu, 23 Jan 2025 15:28:41 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=9B=82=20filter=20nominations=20ba?= =?UTF-8?q?sed=20on=20competing=20interests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scipost_django/colleges/forms.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scipost_django/colleges/forms.py b/scipost_django/colleges/forms.py index 39f232d36..1e1ee96fb 100644 --- a/scipost_django/colleges/forms.py +++ b/scipost_django/colleges/forms.py @@ -765,7 +765,11 @@ class FellowshipNominationSearchForm(forms.Form): ) nominations = ( - FellowshipNomination.objects.all() + FellowshipNomination.objects.filter( + profile__in=Profile.objects.no_competing_interests_with( + self.user.contributor.profile + ) + ) .annotate( latest_round_deadline=latest_round_subquery("voting_deadline"), latest_round_open=latest_round_subquery("voting_opens"), -- GitLab