<div class="object__wrapper object__item__section">
<div class="object__wrapper__title object__wrapper__title--mb-20">{{ (entity.Artist|length > 0 ? 'T_ARTISTS_INFO' : 'T_ARTIST_INFO' )|trans({}, 'openform_front', app.request.locale) }}:</div>
{% for artist in entity.Artist %}
<div class="object__wrapper__list">
{% if artist.fullName %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_ARTIST_FULL_NAME')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
<a href="{{ toolkit_route_localizer.generate('search', {}, app.request.locale) }}?artist={{ artist.fullName }}">
{{ artist.fullName }}
{{ artist.authorNickName ? '"' ~ artist.authorNickName ~ '"'}}
</a>
</div>
</div>
{% endif %}
{% if artist.dateBirth or artist.yearBirth or artist.ageBirth %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_AUTHOR_BIRTH_DATE')|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': artist.dateBirth,
'year': artist.yearBirth,
'age': artist.ageBirth,
} %}
</div>
</div>
{% endif %}
{% if artist.birthPlace %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_ARTIST_BIRTH_PLACE')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ artist.birthPlace }}
</div>
</div>
{% endif %}
{% if artist.dateDeath or artist.ageDeath or artist.yearDeath %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_AUTHOR_DEATH_DATE')|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': artist.dateDeath,
'age': artist.ageDeath,
'year': artist.yearDeath,
} %}
</div>
</div>
{% endif %}
{% if artist.deathPlace %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_ARTIST_DEATH_PLACE')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ artist.deathPlace }}
</div>
</div>
{% endif %}
</div>
{% if artist.Translation[app.request.locale].authorDescription %}
<div class="object__item-wrap object__item-wrap--description">
<h3 class="object__item-wrap__title">{{('T_ARTIST_DESCRIPTION')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ artist.Translation[app.request.locale].authorDescription|raw }}
</div>
</div>
{% endif %}
{% if artist.Translation[app.request.locale].authorRemarks %}
<div class="object__item-wrap object__item-wrap--description">
<h3 class="object__item-wrap__title">{{('T_OBJECT_ARTIST_DESCRIPTION_ADDITIONAL')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ artist.Translation[app.request.locale].authorRemarks|raw }}
</div>
</div>
{% endif %}
{% endfor %}
</div>