{# An HTML fragment that describes the available image templates and ICC profiles, and the default settings in force on this server. Template variables: default_template - the system default template formats - the list supported image file types templates - the list supported image template names iccs - the list supported ICC profile names settings - the Flask application config #}
The following settings are active on your server. Contact your system administrator if you require any of these values to be changed.
{{ default_template.name() }}
template.
This template applies the following settings:
{% set template=default_template %}
{% set template_show_blank=False %}
{% include "inc_template_ul.html" %}
PDF files will be converted to images at {{ settings.PDF_BURST_DPI }}
DPI by default.
{% if not settings.PUBLIC_MAX_IMAGE_WIDTH and not settings.PUBLIC_MAX_IMAGE_HEIGHT %}
Currently no limit is defined, and unknown users can access full versions of public-facing images.
{% elif settings.PUBLIC_MAX_IMAGE_WIDTH and settings.PUBLIC_MAX_IMAGE_HEIGHT %}
Currently unknown users will be denied image requests larger than
width {{ settings.PUBLIC_MAX_IMAGE_WIDTH }}
or height {{ settings.PUBLIC_MAX_IMAGE_HEIGHT }}
pixels.
{% elif settings.PUBLIC_MAX_IMAGE_WIDTH %}
Currently unknown users will be denied image requests with a width
greater than {{ settings.PUBLIC_MAX_IMAGE_WIDTH }}
pixels.
{% elif settings.PUBLIC_MAX_IMAGE_HEIGHT %}
Currently unknown users will be denied image requests with a height
greater than {{ settings.PUBLIC_MAX_IMAGE_HEIGHT }}
pixels.
{% endif %}
{% if settings.PUBLIC_MAX_IMAGE_WIDTH or settings.PUBLIC_MAX_IMAGE_HEIGHT %}
This setting is also used to default the image size when an unknown user
requests an image without giving either a width or a height. Note that if
an image template defines a size larger than the limit, the template takes
precedence.
{% endif %}
{% for f in formats %}
{{ f }}{% if not loop.last %}, {% endif %}
{% else %}
None
{% endfor %}
{% for t in templates %}
{{ t }}{% if not loop.last %}, {% endif %}
{% else %}
None
{% endfor %}
{{ colorspace }}: {% if loop.last %} {% endif %}
{% for name in iccs[colorspace] %}
{{ name }}{% if not loop.last %}, {% endif %}
{% endfor %}
None.
{% endfor %}