What is the best workflow for uploading file to the blobstore while saving information about the blob and other fields to a model record?
For example, should I submit the form to the blobstore upload url (blobstore.create_upload_url), clean the form, redirect if errors and save and redirect if not?
What is the best way to pass the errors back? GET variables? I tried using models to the save the form errors and redirecting based on the form error model instance, but that was messy. Any ideas?