src/Elements/Bundle/DemiFrontendBundle/Resources/views/Accommodation/includes/detail-templates/acco-current-information.html.twig line 1

Open in your IDE?
  1. {% set currentInformation = accommodation.getDescription(constant("\\Elements\\Demi\\Deskline\\Constant\\DescriptionInterface::DESCRIPTION_SERVICE_PROVIDER_CURRENT_INFORMATION"),app.request.locale, fromDate) %}
  2. {% if currentInformation is not empty %}
  3.     <div class="current-information card bordered mb-4">
  4.         <div class="card-body p-3">
  5.             <h4 class="text-primary">{{ 'demi.detail.headline.current-information'|trans }}</h4>
  6.             <div class="wysiwyg">
  7.                 {{ currentInformation|raw }}
  8.             </div>
  9.         </div>
  10.     </div>
  11. {% endif %}