{% if is_granted('IS_AUTHENTICATED_FULLY') %}
{% else %}
{% endif %}
fields marked * are mandatory fields.
Affiliation
{% if expert.0.regType == 1
and expert.2 %}
{% set instIdCountry = expert.2.countryCode %}
{% else %}
{% set instIdCountry = '' %}
{% endif %}
Institute
{% if is_granted('IS_AUTHENTICATED_FULLY') %}
If you cannot find your institute in the list,
click on "Cannot find my institute- Create New" option in the above dropdown to create New Institute.
{% else %}
The moment you confirmed you subscription by clicking on the link in the mail you have received,
you will be able to add your institute if it is not yet in the list.
To do so edit your profile after logging in
and choose "Cannot find my institute- Create New" option in the above dropdown.
{% endif %}
Create a new organization/institute/company
{# address info depends on settings #}
{% if expert.0.useInstAddr == 1 %}
{# use the address info from the institute #}
{% if expert.2.instAddress is defined
and expert.2.instAddress is not null
and expert.2.instAddress != ''
%}
{% set route = expert.2.instAddress %}
{% else %}
{% set route = '-' %}
{% endif %}
{% if expert.2.addr2 is defined
and expert.2.addr2 is not null
and expert.2.addr2 != ''
%}
{% set addrline2 = expert.2.addr2 %}
{% else %}
{% set addrline2 = '-' %}
{% endif %}
{% if expert.2.postcode is defined
and expert.2.postcode is not null
and expert.2.postcode != ''
%}
{% set postalCode = expert.2.postcode %}
{% else %}
{% set postalCode = '-' %}
{% endif %}
{% if expert.2.city is defined
and expert.2.city is not null
and expert.2.city != ''
%}
{% set locality = expert.2.city %}
{% else %}
{% set locality = '-' %}
{% endif %}
{% if expert.2.state is defined
and expert.2.state is not null
and expert.2.state != ''
%}
{% set administrativeArea = expert.2.state %}
{% else %}
{% set administrativeArea = '-' %}
{% endif %}
{% if expert.2.countryCode is defined
and expert.2.countryCode is not null
and expert.2.countryCode != ''
%}
{% set countryCode = expert.2.countryCode %}
{% else %}
{% set countryCode = '21' %}
{% endif %}
{% else %}
{# use the info from the expert #}
{% set route = expert.0.addr1 %}
{% set addrline2 = expert.0.addr2 %}
{% set postalCode = expert.0.postcode %}
{% set locality = expert.0.city %}
{% set administrativeArea = expert.0.state %}
{% set countryCode = expert.0.countryCode %}
{% endif %}