<div class="object__wrapper object__item__section">
<div class="object__wrapper__title object__wrapper__title--mb-20">{{ ('T_CHARACTERS_OBJECTS_ARTIFACTS')|trans({}, 'openform_front', app.request.locale) }}:</div>
<div class="object__wrapper__list">
{% if entity.AntiqueCharacterKind|length > 0 %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_OBJECT_CHARACTER_TYPES')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{% for key, item in entity.AntiqueCharacterKind %}
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueCharacterKind={{ item.Translation[app.request.locale].title }}">
{{ entity.AntiqueCharacterKind|length > 1 and entity.AntiqueCharacterKind|length != key + 1 ? item.Translation[app.request.locale].title ~ ',' : item.Translation[app.request.locale].title }}
</a>
{% endfor %}
</div>
</div>
{% endif %}
{% if entity.AntiqueArtifact|length > 0 %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_OBJECT_ATTRIBUTES')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{% for key, item in entity.AntiqueArtifact %}
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueArtifact={{ item.Translation[app.request.locale].title }}">
{{ entity.AntiqueArtifact|length > 1 and entity.AntiqueArtifact|length != key + 1 ? item.Translation[app.request.locale].title ~ ',' : item.Translation[app.request.locale].title }}
</a>
{% endfor %}
</div>
</div>
{% endif %}
{% if entity.AntiqueCharacterKindAdditional|length > 0 %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_OBJECT_COMPANION_CHARACTER_TYPES')|trans({}, 'openform_front', app.request.locale) ~ ': ' }}</h3>
<div class="object__item-wrap__text">
{% for key, item in entity.AntiqueCharacterKindAdditional %}
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiqueCharacterKindAdditional={{ item.Translation[app.request.locale].title }}">
{{ entity.AntiqueCharacterKindAdditional|length > 1 and entity.AntiqueCharacterKindAdditional|length != key + 1 ? item.Translation[app.request.locale].title ~ ',' : item.Translation[app.request.locale].title }}
</a>
{% endfor %}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].background %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_OBJECT_BACKGROUND')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ entity.Translation[app.request.locale].background|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.AntiquePhisicalAttributeAdditional3|length > 0 %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_OBJECT_ADDITIONAL_FEATURES_3')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{% for item in entity.AntiquePhisicalAttributeAdditional3 %}
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?antiquePhisicalAttributeAdditional3={{ 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.Translation[app.request.locale].AntiquePhisicalAttributeAdditional4 %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_OBJECT_PHISICAL_ATRIBUTE_ADDITIONAL4')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ entity.Translation[app.request.locale].AntiquePhisicalAttributeAdditional4|raw }}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].AntiquePhisicalAttributeAdditional5 %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_OBJECT_PHISICAL_ATRIBUTE_ADDITIONAL5')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ entity.Translation[app.request.locale].AntiquePhisicalAttributeAdditional5|raw }}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].folkContext %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_OBJECT_CULTURAL_AND_FOLK_CONTEXT')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ entity.Translation[app.request.locale].folkContext|raw }}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].additionalInformations %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_OBJECT_ADDITIONAL_INFORMATIONS')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ entity.Translation[app.request.locale].additionalInformations|raw }}
</div>
</div>
{% endif %}
</div>
</div>