{% if companyType == 'Client' %}
{% if global is defined %}
{% if global != "yes" %}
{{ message|default('Candidate company is a listed as an exclusive client.') }}
{% else %}
{{ message|default('At list one of the candidate company global branch is listed as an exclusive client.') }}
{% endif %}
{% else %}
{{ message|default('Candidate company is a listed as an exclusive client.') }}
{% endif %}
{% elseif companyType == 'Prospect' %}
{% if global is defined %}
{% if global != "yes" %}
{{ message|default('Candidate company is a listed as an exclusive prospect.') }}
{% else %}
{{ message|default('At list one of the candidate company global branch is listed as an exclusive prospect.') }}
{% endif %}
{% else %}
{{ message|default('Candidate company is a listed as an exclusive prospect.') }}
{% endif %}
{% endif %}