{% if record.is_grouping() %}
{% trans 'Story_id' %} : {{ record.get_record_id() }}
{% else %}
{% trans 'Record_id' %} : {{ record.get_record_id() }}
{% endif %}
{% if record.is_grouping() == false %}
{% set document = record.get_subdef('document') %}
{% trans 'Nom Original' %} :
{{ record.get_original_name() }}
{{ record.get_mime() }}
{% if document and document.get_size() %}
- {{document.get_size()| formatOctets}}
{% endif %}
{% if document and document.get_width() and document.get_height() %}
{% trans 'Size' %} :
{{document.get_width()}} x {{document.get_height()}} px
{% if record.get_type() == 'image' and document.get_width() and document.get_height() %}
{% set size_w = (document.get_width() * (254/100) / 300) %}
{% set size_h = (document.get_height() * (254/100) / 300) %}
{{ size_w|round(1) }} x {{ size_h|round(1) }} cm (300dpi)
{% set size_w = (document.get_width() * (254/100) / 72) %}
{% set size_h = (document.get_height() * (254/100) / 72) %}
{{ size_w|round(1) }} x {{ size_h|round(1) }} cm (72dpi)
{% endif %}
{% endif %}