Files
mayan-edms/mayan/apps/documents/templates/documents/document_print.html
2015-08-25 22:58:28 -04:00

10 lines
279 B
HTML

{% extends 'appearance/base.html' %}
{% block title %}{{ title }}{% endblock title %}
{% block content_plain %}
{% for page in pages %}
<img src="{% url 'documents:document_display_print' object.id %}?page={{ page.page_number }}" />
{% endfor %}
{% endblock %}