Files
mayan-edms/mayan/apps/documents/templates/documents/document_print.html
2018-06-08 17:03:46 -04:00

22 lines
669 B
HTML

{% extends 'appearance/base_plain.html' %}
{% block title %}{{ title }}{% endblock title %}
{% block content_plain %}
{% if pages %}
{% for page in pages %}
<img
src="{{ page.get_api_image_url }}?width={{ width }}&height={{ height }}" style="width: 100%;"
/>
{% endfor %}
{% else %}
{% for document in documents %}
{% for page in document.pages.all %}
<img
src="{{ page.get_api_image_url }}?width={{ width }}&height={{ height }}" style="width: 100%;"
/>
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}