emile 6 months ago
parent 9bebd8a4d4
commit a6840a9c6d

@ -197,7 +197,7 @@ def add_staff(request):
@staff_login_required @staff_login_required
def add_project(request): 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() project_types = ProjectType.objects.all()
customers = CustomerProfile.objects.all().order_by('-id') customers = CustomerProfile.objects.all().order_by('-id')
if request.method == 'POST': if request.method == 'POST':

Loading…
Cancel
Save