Stop apps from changing status that shouldnt be allowed

This commit is contained in:
2011-05-27 11:51:32 +01:00
parent 1dca69bb63
commit 6be048030b

View File

@@ -187,6 +187,7 @@ def update_application(request, applicationid, status):
app = get_object_or_404(Application, id=applicationid)
if not app.status in [APPLICATION_STATUS_REJECTED, APPLICATION_STATUS_COMPLETED]:
perm = check_permissions(request.user, app)
if perm == HR_ADMIN or (perm == HR_VIEWONLY and int(status) <= 1):
if not app.status == status: