diff --git a/kfet/views.py b/kfet/views.py index 2f9ae6f9..a91e884e 100644 --- a/kfet/views.py +++ b/kfet/views.py @@ -184,8 +184,8 @@ class DemandeSoireeView(FormView): @teamkfet_required def account(request): accounts = Account.objects.select_related("cofprofile__user").order_by("trigramme") - positive_accounts = Account.objects.filter(balance__gte=0) - negative_accounts = Account.objects.filter(balance__lt=0) + positive_accounts = Account.objects.filter(balance__gte=0).exclude(trigramme="#13") + negative_accounts = Account.objects.filter(balance__lt=0).exclude(trigramme="#13") return render(request, "kfet/account.html", { "accounts": accounts,