<div class="object__wrapper object__item__section">
<div class="object__wrapper__title object__wrapper__title--mb-20">{{('T_REPRESENTATION_ON_THE_DOCUMENT' )|trans({}, 'openform_front', app.request.locale) }}:</div>
<div class="object__wrapper__list">
{% if entity.AntiqueTheme|length > 0 %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_SUBJECT')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{% for item in entity.AntiqueTheme %}
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueTheme={{ item.Translation[app.request.locale].title }}">
{{item.Translation[app.request.locale].title ? item.Translation[app.request.locale].title}}
</a>
{% if not loop.last %},
{% endif %}
{% endfor %}
</div>
</div>
{% endif %}
{% if entity.AntiqueSceneKind|length > 0 %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_TYPE_OF_PERFORMANCE')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{% for item in entity.AntiqueSceneKind %}
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueSceneKind={{ item.Translation[app.request.locale].title }}">
{{item.Translation[app.request.locale].title ? item.Translation[app.request.locale].title}}
</a>
{% if not loop.last %},
{% endif %}
{% endfor %}
</div>
</div>
{% endif %}
{% if entity.AntiqueScene|length > 0 and entity.AntiqueScene.Translation[app.request.locale].title %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_MAIN_SHOW')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueScene={{ entity.AntiqueScene.Translation[app.request.locale].title }}">
{{entity.AntiqueScene.Translation[app.request.locale].title}}
</a>
</div>
</div>
{% endif %}
{% if entity.AntiqueSceneAdditional1|length > 0 and entity.AntiqueSceneAdditional1.Translation[app.request.locale].title %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ADDITIONAL_SHOWS1')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueSceneAdditional1={{ entity.AntiqueSceneAdditional1.Translation[app.request.locale].title }}">
{{entity.AntiqueSceneAdditional1.Translation[app.request.locale].title}}
</a>
</div>
</div>
{% endif %}
{% if entity.AntiqueSceneAdditional2|length > 0 and entity.AntiqueSceneAdditional2.Translation[app.request.locale].title %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ADDITIONAL_SHOWS2')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueSceneAdditional2={{ entity.AntiqueSceneAdditional2.Translation[app.request.locale].title }}">
{{entity.AntiqueSceneAdditional2.Translation[app.request.locale].title}}
</a>
</div>
</div>
{% endif %}
{% if entity.AntiqueSceneAdditional3|length > 0 and entity.AntiqueSceneAdditional3.Translation[app.request.locale].title %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ADDITIONAL_SHOWS3')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueSceneAdditional3={{ entity.AntiqueSceneAdditional3.Translation[app.request.locale].title }}">
{{entity.AntiqueSceneAdditional3.Translation[app.request.locale].title}}
</a>
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].shownObjectDescription %}
<div class="object__item-wrap object__item-wrap--description">
<h3 class="object__item-wrap__title">{{('T_DESCRIPTION_OF_THE_OBJECT_PRESENTED_IN_THE_DOCUMENT')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].shownObjectDescription|raw}}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].folkPeopleContext %}
<div class="object__item-wrap object__item-wrap--description">
<h3 class="object__item-wrap__title">{{('T_CULTURAL_AND_FOLK_CONTEXT')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].folkPeopleContext|raw}}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].documentDescriptionAdditional %}
<div class="object__item-wrap object__item-wrap--description">
<h3 class="object__item-wrap__title">{{('T_ADDITIONAL_DESCRIPTION_DOCUMENT')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].documentDescriptionAdditional|raw}}
</div>
</div>
{% endif %}
</div>
</div>