mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
blur effect added on requestor if marked as anonymous
This commit is contained in:
parent
9fe744f09f
commit
a8978a52b9
@ -136,10 +136,18 @@
|
|||||||
<div class="requestor">
|
<div class="requestor">
|
||||||
{% if accompanyingCourse.requestorPerson is not null %}
|
{% if accompanyingCourse.requestorPerson is not null %}
|
||||||
<h4 class="item-key">{{ 'Requestor'|trans }}</h4>
|
<h4 class="item-key">{{ 'Requestor'|trans }}</h4>
|
||||||
{{ _self.insert_onthefly('person', accompanyingCourse.requestorPerson) }}
|
{% if accompanyingCourse.requestorAnonymous %}
|
||||||
|
<div class="confidential"><p class="blur">{{ _self.insert_onthefly('person', accompanyingCourse.requestorPerson) }}</p></div>
|
||||||
|
{% else %}
|
||||||
|
{{ _self.insert_onthefly('person', accompanyingCourse.requestorPerson) }}
|
||||||
|
{% endif %}
|
||||||
{% elseif accompanyingCourse.requestorThirdParty is not null %}
|
{% elseif accompanyingCourse.requestorThirdParty is not null %}
|
||||||
<h4 class="item-key">{{ 'Requestor'|trans }}</h4>
|
<h4 class="item-key">{{ 'Requestor'|trans }}</h4>
|
||||||
{{ _self.insert_onthefly('thirdparty', accompanyingCourse.requestorThirdParty) }}
|
{% if accompanyingCourse.requestorAnonymous %}
|
||||||
|
<div class="confidential"><p class="blur">{{ _self.insert_onthefly('thirdparty', accompanyingCourse.requestorThirdParty) }}</p></div>
|
||||||
|
{% else %}
|
||||||
|
{{ _self.insert_onthefly('thirdparty', accompanyingCourse.requestorThirdParty) }}
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user