{{ user.companyName ?? (user.firstName ~ ' ' ~ user.lastName) }}
{% if user.address %}
{{ user.address }}{% if user.postalCode %}, {{ user.postalCode }}{% endif %}{% if user.city %} {{ user.city }}{% endif %}
{% endif %}
{% if user.phone or user.website %}
{% if user.phone %}{{ user.phone }}{% endif %}
{% if user.phone and user.website %} — {% endif %}
{% if user.website %}{{ user.website }}{% endif %}
{% endif %}