{% extends "common/index_bootstrap.html.twig" %} {% block stylesheet %} {% endblock %} {% block content %}
{{ "Base" | trans }} | {{ "Name" | trans }} | {{ "Sub definition" | trans }} | {{ "Size" | trans }} | {{ "Thumbnail" | trans }} |
---|---|---|---|---|
{{ app|sbas_from_bas(file['base_id'])|sbas_labels(app) }} {{ file['base_id']|bas_labels(app) }} | {{ file['original_name'] }} |
{% if file['subdefs'] is iterable and file['subdefs']|length > 0 %}
|
{{ size|formatOctets }} | {% set record_key = app|sbas_from_bas(file['base_id']) ~'_'~ file['record_id']%} {% if record_key in records|keys %} {% set record = attribute(records, record_key) %} {% set thumbnail = record.get_thumbnail() %} {% if thumbnail.isLandscape() %} {% set w = 140 %} {% if thumbnail.get_height() > 0 and thumbnail.get_width() > 0 %} {% set h = (w / (thumbnail.get_width() / thumbnail.get_height()))|round %} {% else %} {% set h = 140 %} {% endif %} {% else %} {% set h = 105 %} {% if thumbnail.get_height() > 0 %} {% set w = (h * (thumbnail.get_width() / thumbnail.get_height()))|round %} {% else %} {% set w = 105 %} {% endif %} {% endif %} {% endif %} |