Files
mayan-edms/mayan/apps/documents/templates/documents/document_print.html
2018-08-13 22:14:14 -04:00

14 lines
325 B
HTML

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