My problem is that the browser downloads the pdf
instead of displaying it.
I tried some solutions from this site (for example) but none of them worked for me.
I use this code in my html
file and nothing else:
{% load static %}
<body>
<object data="test.pdf" type="application/pdf" title="SamplePdf" width="500" height="720">
<embed src="{% static 'test.pdf' %}" >
</object>
</body>
Ideas?