Files
mayan-edms/mayan/apps/documents/templates/documents/document_print.html
Michael Price f978eb49f4 make sure the printed pages are full width.
Signed-off-by: Michael Price <loneviking72@gmail.com>
2018-04-01 20:03:44 -04:00

12 lines
310 B
HTML

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