I need help with the following problem.
I am working on a Django site. My page requires users to complete a form. My view then processes this form information. Part of this involves processing large files which takes a long time. I want to be able to return a thank-you page as soon as the form is submitted but then process the data afterwards in the same view. How can I do this?