<div class="object__wrapper object__wrapper--last object__item__section">
<div class="object__wrapper__title object__wrapper__title--mb-20">{{ ('T_RECORD_INFORMATION')|trans({}, 'openform_front', app.request.locale) }}:</div>
<div class="object__wrapper__list">
{% if entity.Translation[app.request.locale].updatedAt %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_UPDATE_AT')|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.Translation[app.request.locale].updatedAt} %}
</div>
</div>
{% endif %}
{% if entity.id %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_ID_NUMBER')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
{{ entity.id }}
</div>
</div>
{% endif %}
{% set href = app.request.getSchemeAndHttpHost() ~ toolkit_route_localizer.generate('antique_item',{ slug : entity.Translation[app.request.locale].slug }, app.request.locale) %}
{% if href %}
<div class="object__item-wrap">
<h3 class="object__item-wrap__title">{{ ('T_OBJECT_URL')|trans({}, 'openform_front', app.request.locale) }}:</h3>
<div class="object__item-wrap__text">
<a href="{{ href }}">{{ href }}</a>
</div>
</div>
{% endif %}
</div>
</div>