[Answer]-Django: FILES Form Not Validating

1👍

This line:

jobsubmit = JobSubmitForm(request.FILES)

should be as:

jobsubmit = JobSubmitForm(request.POST, request.FILES)

try it?

👤greg

Leave a comment