Notes

annotation

Display PDF Attachments

{% if note.mimetype == "application/pdf" and note.documentbody %}
<div class="attachment-preview">
  <iframe
    src="data:application/pdf;base64,{{ note.documentbody }}"
    width="100%"
    height="700"
    style="border:0;"
    title="{{ note.filename | escape }}">
  </iframe>
</div>
{% endif %}