{% set repondre_css , non_repondu = "", 'non_repondu' %}
{% if webform_submission_value_2 is not empty %}
{% set repondre_css , non_repondu = 'reponse_css', "" %}
{% endif %}
{% set nom , b = '', [] %}
{% if title == 'question citoyen mobile' %}
{% set b = body | striptags | split('/') %}
{% else %}
{% set b = body | striptags | split(',') %}
{% endif %}
{% if b[0] | length > 25 %}
{% set names = b[0] | striptags | split(' ') %}
{% for name in names if nom | length <= 25 %}
{% set verif = nom ~ ' ' ~ name %}
{% if verif | length <= 25 %}
{% set nom = nom ~ ' ' ~ name %}
{% endif %}
{% endfor %}
{% else %}
{% set nom = b[0] %}
{% endif %}