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':