0

i am trying to display pdf documents on the browser but its not displaying on chrome, instead its downloading, but on other browsers like IE it's working just fine

{% block content_display %}

  <embed type="application/PDF" src="{{bk.upload_content.url}}" width="100%" height="650"/>

{% end block %}

1 Answers1

0

try to use this

{% block content_display %}

  <iframe src="{{bk.upload_content.url}}" width="100%" height="650"/>

{% end block %}

if it does not work then try this after clear your cache.

Fahim Ahmed
  • 141
  • 11