templates/dossier/pattern/_tarif_sejour.html.twig line 1

Open in your IDE?
  1. {% trans_default_domain 'walkinn' %}
  2. <div id="tarif_sejour">
  3.   <div class="title-div">
  4.     <h4>{% trans into app.request.locale ?: "fr_fr" %}Tarif{% endtrans %}</h4>
  5.   </div>
  6.   {% for item in liste %}
  7.     <p>
  8.       <span class="bold-th">{{ 'Prix par personne'|trans({"deepl": true}, null, app.request.locale) }}:</span><span class="colored-text">{{ item.prix_vente }} €/{{ 'pers.'|trans({"deepl": true}, null, app.request.locale) }}</span>
  9.       <br>
  10.       {{ 'Prix nets'|trans({"deepl": true}, null, app.request.locale) }}
  11.     </p>
  12.   {% endfor %}
  13. </div>