1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| {% for option in options %}
{% if option.gosFkGarantieSouscrit.getGasId()==garantieSouscrite.gasId %}
{% if option.gosListeValeur %}
{% switch option.gosLibelleOption %}
{% case "Taux de couverture" %}
<b> {{option.gosLibelleOption}}</b>: {{option.gosListeValeur}}%<br>
{% case "Suit le statut" || "Majoration cause décès"%}
<b> {{option.gosLibelleOption}}</b>: {{suivreStatut[option.gosListeValeur]}}<br>
{% default %}
<b> {{option.gosLibelleOption}}</b>: {{option.gosListeValeur}}<br>
{% endswitch %}
{% endif %}
{% endif %}
{% endfor %} |