bouches-du-rhone: only show person's hint if the person is looked after (#57769)

This commit is contained in:
Benjamin Dauvergne 2021-10-12 12:12:08 +02:00
parent c03d332d9e
commit cb8085a54a
1 changed files with 2 additions and 0 deletions

View File

@ -21,7 +21,9 @@
<select name="referent">
<option value="" data-hint=""></option>
{% for r in json.data %}
{% if r.pers_suivies %}
<option value="{{ r.id }}" {% if request.GET.referent|decimal == r.id %}selected="selected"{% endif %}>{{ r.nom }} {{ r.prenom }}</option>
{% endif %}
{% endfor %}
</select>
</div>