So like this question IE doesn't support the download
attribute. The second answer of that question offers a solution that uses an iframe
with an HTTP header of: Content-Disposition: attachment; filename="some filename"
It suggests you attach that header using:
`header('Content-Disposition: attachment; filename="some filename"');`
I think this is PHP. Is there a way to do this in Django? Also the .mp4
resource that they will be downloading when they click on the download button, is used on our website in other places. So not every request for that video should have this header attached. Thanks for your help.