Projet

Général

Profil

0005-bouches-du-rhone-only-show-person-s-hint-if-the-pers.patch

Benjamin Dauvergne, 12 octobre 2021 14:56

Télécharger (1,15 ko)

Voir les différences:

Subject: [PATCH 5/7] bouches-du-rhone: only show person's hint if the person
 is looked after (#57769)

 .../combo/json/rsa13-formulaire-de-recherche.html               | 2 ++
 1 file changed, 2 insertions(+)
templates/variants/bouches-du-rhone/combo/json/rsa13-formulaire-de-recherche.html
21 21
        <select name="referent">
22 22
          <option value="" data-hint=""></option>
23 23
          {% for r in json.data %}
24
          {% if r.pers_suivies %}
24 25
          <option value="{{ r.id }}" {% if request.GET.referent|decimal == r.id %}selected="selected"{% endif %}>{{ r.nom }} {{ r.prenom }}</option>
26
          {% endif %}
25 27
          {% endfor %}
26 28
        </select>
27 29
      </div>
28
-