{% load base_filters %} {% load perm_tags %} {% load profile_filters %} {% load profile_tags %} {% if profile.user_id %}
{% with profile.membership as membership %}
{% gravatar profile.user 56 %}
{% include "profiles/include/social_media_links.html" %} {% if profile.company %} {% trans "Company:" %} {{ profile.company }}
{% endif %} {% if profile.address %} {% if request.user.profile.is_superuser or not profile.hide_address %} {% trans "Address:" %} {{ profile.address }}
{% endif %} {% endif %} {% 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 request.user.profile.is_superuser or request.user == profile.user %} {% if profile.member_number %} {% trans "Member Number:" %} {{ profile.member_number }}
{% endif %} {% endif %} {% if membership.status_detail %} {% trans "Application Status:" %} {{ membership.status_detail }}
{% endif %}
{% if profile.phone %} {% if request.user.profile.is_superuser or not profile.hide_phone %} {% trans "Phone:" %} {{ profile.phone|phonenumber }}
{% endif %} {% endif %} {% if profile.mobile_phone %} {% if request.user.profile.is_superuser or not profile.hide_phone %} {% trans "Mobile Phone:" %} {{ profile.mobile_phone|phonenumber }}
{% endif %} {% endif %} {% if request.user.profile.is_superuser or request.user == profile.user %} {% if membership.create_dt %} {% trans "Create Date:" %} {{ membership.create_dt }}
{% endif %} {% if membership.join_dt %} {% trans "Join Date:" %} {{ membership.join_dt }}
{% endif %} {% if membership.expire_dt %} {% trans "Expire Date:" %} {{ membership.expire_dt }}
{% endif %} {% endif %}
{% if profile.hide_in_search %} {% trans "this record is not searchable unless you are administrator." %}
{% endif %} {% if profile.hide_email or profile.hide_address or profile.hide_phone %} {% trans "the following items are hidden unless you are administrator: " %} {% if profile.hide_email %}email{% endif %}{% if profile.hide_address %}, location{% endif %}{% if profile.hide_phone %}, phone{% endif %}. {% endif %}
{% endwith %} {% profile_meta %}
{% endif %}