{% if profile.user.email %}
{% if request.user.profile.is_superuser or not profile.hide_email %}
{% trans "Email:" %} {{ profile.user.email|obfuscate_email }}
{% endif %}
{% endif %}
{% if profile.phone %}
{% if request.user.profile.is_superuser or not profile.hide_phone %}
{% trans "Phone:" %} {{ profile.phone|phonenumber }}
{% endif %}
{% endif %}
{% if profile.company %}
{% trans "Company:" %} {{ profile.company }}
{% endif %}
{% if profile.is_member %}
{% if profile|allow_edit_by:user %}