Reputation: 299
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?
Upvotes: 1
Views: 5805
Reputation: 56
<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
.
Upvotes: 4