{% if landingPriceNet != 0 %}
{% if
country is not empty
and country.countrySettings is not empty
and country.countrySettings.signBeforePrice is not empty
%}
{{ country.countrySettings.signBeforePrice }}
{% endif %}
{% if (rate is defined and rate == 'netto') %}
{{ (landingPriceNet)}}
{% else %}
{{ landingPriceGross }}
{% endif %}
{% if
country is not empty
and country.countrySettings is not empty
and country.countrySettings.signAfterPrice is not empty
%}
{{ country.countrySettings.signAfterPrice }}
{% endif %}
{% if
country is not empty
and (country.countrySettings is empty
or (
country.countrySettings.signAfterPrice is empty
and country.countrySettings.signBeforePrice is empty
))
%}
{{ country.currency.code }}
{% endif %}
{% if rate is defined and showRate is defined and showRate == true %}
{% if rate == 'netto' %}
{{ 'global.net'|trans }}
{% else %}
{{ 'global.gross'|trans }}
{% endif %}
{% endif %}
{% else %}
{{ 'uniqskills.landing.freeAccess'|trans }}
{% endif %}