Can someone help me in django when downloading a file. I have this code:

<a href="#">Download</a>

I have a pdf file in my static folder and once I click it, the pdf file will be downloaded. Can you help me with this?

link|improve this question

56% accept rate
2  
"#" isn't a link to anything. Probably need to have something more like a path to the file. {{ STATIC_URL }}subdir/filename.pdf – William Stearns Nov 21 '11 at 16:40
yeah, i know. hehe. i just wanna know what's the correct syntax inside the href. :D – david Nov 21 '11 at 16:48
well, i got it. thanks. :D – david Nov 21 '11 at 16:51
feedback

1 Answer

up vote 1 down vote accepted

<a href="{{ MEDIA_URL }}/pdf/yourPDFfilename.pdf">Download</a>

If I understand the question, this should work. MEDIA_URL is set in your project settings.py file and will aliases to the value you set in MEDIA_ROOT.

link|improve this answer
oh i see, so when you put {{MEDIA_URL}}/pdf/pdfname.pdf, this will automatically download the file? – david Nov 21 '11 at 16:47
thanks Al Deluca, because i tried to search in the internet, there are so many other functions that they are using. The output is always give an error. well, thank you sir. :D – david Nov 21 '11 at 16:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.