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