diff --git a/apps/registration/views.py b/apps/registration/views.py index bab5fc1..f63a5a3 100644 --- a/apps/registration/views.py +++ b/apps/registration/views.py @@ -541,11 +541,14 @@ class SolutionView(LoginRequiredMixin, View): raise Http404 solution = Solution.objects.get(file__endswith=filename) user = request.user - passage_participant_qs = Passage.objects.filter(Q(defender=user.registration.team.participation) - | Q(opponent=user.registration.team.participation) - | Q(reporter=user.registration.team.participation), - defender=solution.participation, - solution_number=solution.problem) + if user.registration.participates: + passage_participant_qs = Passage.objects.filter(Q(defender=user.registration.team.participation) + | Q(opponent=user.registration.team.participation) + | Q(reporter=user.registration.team.participation), + defender=solution.participation, + solution_number=solution.problem) + else: + passage_participant_qs = Passage.objects.none() if not (user.registration.is_admin or user.registration.is_volunteer and Passage.objects.filter(Q(pool__juries=user.registration) | Q(pool__tournament__in=user.registration.organized_tournaments.all()),