I'm working on a django app (web).
I have my awesome page with a form on it.
I want to let the user select a file on their local machine via the nice file upload button that you get for the <input type="file">
.
I don't care however about the file content. I only care about its absolute path, so I'd like to get that into a text field (or whatever) and submit it from my html form.
My other option (unacceptable actually) would be to let the users write the filepath in the input field by themselves... but that's not cool at all.
Does this sound doable?