17 lines
402 B
HTML
17 lines
402 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="{% get_api_image_url page width=width height=height %}" style="width: 100%;"
|
|
/>
|
|
{% endfor %}
|
|
{% endblock %}
|