{% set collection = getProductCensorship(entity, 'trailer') %}
{% if collection | length %}
<div class="short-info__wrapper feature-box">
<h6>{{ 'content.movies.trailer' | trans({}, 'PressSite') }}</h6>
<div class="img-wrapper">
{% for item in collection.images %}
{% if collection.images is not empty %}
<img src="{{ asset(item.rating_content_icon.icon) }}" title="{{ item.rating_content_icon.alt }}" alt="{{ item.rating_content_icon.alt }}">
{% if item.rating_symbol_icons is not empty %}
{% for rating_symbol_icon in item.rating_symbol_icons %}
<img src="{{ asset(rating_symbol_icon.icon) }}" title="{{ rating_symbol_icon.alt }}" alt="{{ rating_symbol_icon.alt }}">
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
</div>
<div class="text-wrapper">
{% for item in collection.text %}
{% if collection.text is not empty %}
<span>{{ item.label }}</span><br>
{% endif %}
{% endfor %}
</div>
</div>
{% endif %}