<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')|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.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.AntiqueStorageInstitution and entity.AntiqueStorageInstitution.Translation[app.request.locale].title %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ANTIQUE_STORAGE_INSTITUTION')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueStorageInstitution={{ entity.AntiqueStorageInstitution.Translation[app.request.locale].title }}">
{{entity.AntiqueStorageInstitution.Translation[app.request.locale].title}}
</a>
</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.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.purchaseDate or entity.purchaseAge or entity.purchaseYear %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ANTIQUE_DATE_ACQUISITION')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{% include('@openform_front_templates/AntiqueSuit/_templates/_fields/_date_and_age.html.twig') with {
'date': entity.purchaseDate,
'age': entity.purchaseAge,
'year': entity.purchaseYear,
} %}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].originHistory %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ANTIQUE_OWNER_ORIGIN_HISTORY')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].originHistory|raw}}
</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 %}
</div>
</div>