Files
mayan-edms/mayan/apps/documents/templates/documents/document_print.html
Roberto Rosario f1c704e3e1 Complete prefixing template tags with app names
Additionally remove unused template tags.

Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
2019-11-17 01:59:17 -04:00

17 lines
412 B
HTML

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