{% if post.embed %} {{ post.embed }} {% include "post/file_controls.html" %} {% else %}
{% if config.score_board %}
{% endif %}
File:
{% if file.filename|length > config.max_filename_display %}
{{ file.filename|truncate_filename(config.max_filename_display)|e|bidi_cleanup }}
{% else %}
{{ file.filename|e|bidi_cleanup }}
{% endif %}
(
{% if file.thumb == 'spoiler' %}
{% trans %}Spoiler Image{% endtrans %},
{% endif %}
{{ file.size|filesize }}
{% if file.width and file.height %}
, {{ file.width}}x{{ file.height }}
{% if config.show_ratio %}
, {{ ratio(file.width, file.height) }}
{% endif %}
{% endif %}
{% if config.show_filename and file.filename %}
{% endif %}
)
{% else %}
File: {{ file.file }}
(
{% if file.thumb == 'spoiler' %}
{% trans %}Spoiler Image{% endtrans %},
{% endif %}
{{ file.size|filesize }}
{% if file.width and file.height %}
, {{ file.width}}x{{ file.height }}
{% if config.show_ratio %}
, {{ ratio(file.width, file.height) }}
{% endif %}
{% endif %}
{% if config.show_filename and file.filename %}
,
{% if file.filename|length > config.max_filename_display %}
{{ file.filename|truncate_filename(config.max_filename_display)|e|bidi_cleanup }}
{% else %}
{{ file.filename|e|bidi_cleanup }}
{% endif %}
{% endif %}
)
{% endif %}
{% include "post/image_identification.html" %}
{% include "post/file_controls.html" %}