demandeur not displayed in search list if anonymous

This commit is contained in:
Julie Lenaerts 2022-01-31 12:45:02 +01:00
parent 170ce2d51c
commit 1162c436c1

View File

@ -99,11 +99,12 @@
{% endif %}
</div>
<div class="ms-auto">
{% if acp.requestorPerson == person %}
{% if acp.requestoranonymous == false and acp.requestorPerson == person %}
<span class="as-requestor badge bg-info" title="{{ 'Requestor'|trans|e('html_attr') }}">
{{ 'Requestor'|trans({'gender': person.gender}) }}
</span>
{% endif %}
{% if acp.emergency %}
<span class="badge rounded-pill bg-danger">{{- 'Emergency'|trans|upper -}}</span>
{% endif %}
@ -186,7 +187,7 @@
</a>
</li>
</ul>
{% if acp.requestoranonymous == false %}
{% if (acp.requestorPerson is not null and acp.requestorPerson.id != person.id) or acp.requestorThirdParty is not null %}
<div class="wl-row">
<div class="wl-col title">
@ -218,7 +219,7 @@
</div>
</div>
{% endif %}
{% endif %}
</div>
</div>
{% endfor %}