src/Package/Openform/Front/Templates/AntiqueSuit/_templates/_sections/_section-3-archive.html.twig line 1

Open in your IDE?
  1. <div class="object__wrapper object__item__section">
  2.     <div class="object__wrapper__title object__wrapper__title--mb-20">{{('T_PLACE_OF_DOCUMENT_OBJECT')|trans({}, 'openform_front', app.request.locale) }}:</div>
  3.     <div class="object__wrapper__list">
  4.         {% if entity.Country and entity.Country.Translation[app.request.locale].title %}
  5.             <div class="object__item-wrap">
  6.                 <h3 class="object__item-wrap__title">{{('T_OBJECT_COUNTRY')|trans({}, 'openform_front', app.request.locale) }}:</h3>
  7.                 <div class="object__item-wrap__text">
  8.                     {{entity.Country.Translation[app.request.locale].title}}
  9.                 </div>
  10.             </div>
  11.         {% endif %}
  12.         {% if entity.Region and entity.Region.Translation[app.request.locale].title %}
  13.             <div class="object__item-wrap">
  14.                 <h3 class="object__item-wrap__title">{{('T_OBJECT_REGION')|trans({}, 'openform_front', app.request.locale) }}:</h3>
  15.                 <div class="object__item-wrap__text">
  16.                     {{entity.Region.Translation[app.request.locale].title}}
  17.                 </div>
  18.             </div>
  19.         {% endif %}
  20.         {% if entity.GeographicalName and entity.GeographicalName.Translation[app.request.locale].title %}
  21.             <div class="object__item-wrap">
  22.                 <h3 class="object__item-wrap__title">{{('T_OBJECT_GEOGRAPHICAL_NAME')|trans({}, 'openform_front', app.request.locale) }}:</h3>
  23.                 <div class="object__item-wrap__text">
  24.                     {{entity.GeographicalName.Translation[app.request.locale].title}}
  25.                 </div>
  26.             </div>
  27.         {% endif %}
  28.         {% if entity.Translation[app.request.locale].placeNameDetailed %}
  29.             <div class="object__item-wrap object__item-wrap--description">
  30.                 <h3 class="object__item-wrap__title">{{('T_SPECIFIC_PLACE_NAME')|trans({}, 'openform_front', app.request.locale) }}:</h3>
  31.                 <div class="object__item-wrap__text">
  32.                     {{entity.Translation[app.request.locale].placeNameDetailed|raw}}
  33.                 </div>
  34.             </div>
  35.         {% endif %}
  36.         {% if entity.Translation[app.request.locale].descPlaceAdditional %}
  37.             <div class="object__item-wrap object__item-wrap--description">
  38.                 <h3 class="object__item-wrap__title">{{('T_ADDITIONAL_DESCRIPTION_PLACE')|trans({}, 'openform_front', app.request.locale) }}:</h3>
  39.                 <div class="object__item-wrap__text">
  40.                     {{entity.Translation[app.request.locale].descPlaceAdditional|raw}}
  41.                 </div>
  42.             </div>
  43.         {% endif %}
  44.     </div>
  45. </div>