<div class="object__wrapper object__item__section">
<div class="object__wrapper__title object__wrapper__title--mb-20">{{('T_OWNERSHIP_DETAILS')|trans({}, 'openform_front', app.request.locale) }}:</div>
<div class="object__wrapper__list">
{% if entity.AntiqueOwner and entity.AntiqueOwner.Translation[app.request.locale].title %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ANTIQUE_OWNER_OBJECT')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueOwner={{ entity.AntiqueOwner.Translation[app.request.locale].title }}">
{{entity.AntiqueOwner.Translation[app.request.locale].title}}
</a>
</div>
</div>
{% endif %}
{% if entity.AntiqueCopyrights|length > 0 %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ANTIQUE_COPYRIGHTS')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text object__item-wrap__copyright">
{% for key, item in entity.AntiqueCopyrights %}
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueCopyrights={{ item.Translation[app.request.locale].title }}">
{{ item.Translation[app.request.locale].title }}
</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</div>
</div>
{% endif %}
{% if entity.AntiqueOwnerCopyrights|length > 0 %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ANTIQUE_OWNER_COPYRIGHTS')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text object__item-wrap__copyright">
{% for key, item in entity.AntiqueOwnerCopyrights %}
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueOwnerCopyrights={{ item.Translation[app.request.locale].title }}">
{{ item.Translation[app.request.locale].title }}
</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</div>
</div>
{% endif %}
{% if entity.inventoryNumber %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_INVENTORY_NUMBER')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ entity.inventoryNumber }}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].ownerCopyrights %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ANTIQUE_OWNER_COPYRIGHTS')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].ownerCopyrights}}
</div>
</div>
{% endif %}
{% if entity.AntiqueStoragePlace and entity.AntiqueStoragePlace.Translation[app.request.locale].title %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ANTIQUE_STORAGE_PLACE')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueStoragePlace={{ entity.AntiqueStoragePlace.Translation[app.request.locale].title }}">
{{entity.AntiqueStoragePlace.Translation[app.request.locale].title}}
</a>
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].ownersAdditionalInformations %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ANTIQUE_OWNER_ADDITIONAL_INFORMATIONS')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].ownersAdditionalInformations|raw}}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].shownObjectOwner %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_OBJECT_OWNER_SHOW')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].shownObjectOwner|raw}}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].inscription %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_OBJECT_INSCRIPTION')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].inscription|raw}}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].shownObjectOwnerDescription %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_OBJECT_OWNER_SHOW_DESC')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].shownObjectOwnerDescription|raw}}
</div>
</div>
{% endif %}
</div>
</div>