diff --git a/participation/views.py b/participation/views.py index ceaf3f6..8e5ff4e 100644 --- a/participation/views.py +++ b/participation/views.py @@ -672,7 +672,7 @@ class TournamentPaymentsView(VolunteerMixin, SingleTableMixin, DetailView): if self.object.final: payments = Payment.objects.filter(final=True) else: - payments = Payment.objects.filter(registrations__team__participation__tournament=self.get_object()) + payments = Payment.objects.filter(registrations__team__participation__tournament=self.get_object(), final=False) return payments.annotate(team_id=F('registrations__team')).order_by('-valid', 'registrations__team__trigram') \ .distinct().all()