From a6840a9c6daf83e55cf2f0b4ccacf5da2890cc47 Mon Sep 17 00:00:00 2001 From: emile Date: Mon, 18 Nov 2024 09:29:46 +0200 Subject: [PATCH] j --- osinaweb/osinacore/add/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osinaweb/osinacore/add/views.py b/osinaweb/osinacore/add/views.py index b50aa635..63c422ad 100644 --- a/osinaweb/osinacore/add/views.py +++ b/osinaweb/osinacore/add/views.py @@ -197,7 +197,7 @@ def add_staff(request): @staff_login_required def add_project(request): - staffs = StaffProfile.objects.filter(active=True).order_by('user__first_name') + staffs = StaffProfile.objects.all().order_by('user__first_name') project_types = ProjectType.objects.all() customers = CustomerProfile.objects.all().order_by('-id') if request.method == 'POST':