<div class="object__wrapper object__item__section">
<div class="object__wrapper__title object__wrapper__title--mb-20">{{('T_PLACE_OF_DOCUMENT_OBJECT')|trans({}, 'openform_front', app.request.locale) }}:</div>
<div class="object__wrapper__list">
{% if entity.Country and entity.Country.Translation[app.request.locale].title %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_OBJECT_COUNTRY')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Country.Translation[app.request.locale].title}}
</div>
</div>
{% endif %}
{% if entity.Region and entity.Region.Translation[app.request.locale].title %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_OBJECT_REGION')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Region.Translation[app.request.locale].title}}
</div>
</div>
{% endif %}
{% if entity.GeographicalName and entity.GeographicalName.Translation[app.request.locale].title %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{('T_OBJECT_GEOGRAPHICAL_NAME')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.GeographicalName.Translation[app.request.locale].title}}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].placeNameDetailed %}
<div class="object__item-wrap object__item-wrap--description">
<h3 class="object__item-wrap__title">{{('T_SPECIFIC_PLACE_NAME')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].placeNameDetailed|raw}}
</div>
</div>
{% endif %}
{% if entity.Translation[app.request.locale].descPlaceAdditional %}
<div class="object__item-wrap object__item-wrap--description">
<h3 class="object__item-wrap__title">{{('T_ADDITIONAL_DESCRIPTION_PLACE')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{entity.Translation[app.request.locale].descPlaceAdditional|raw}}
</div>
</div>
{% endif %}
</div>
</div>